File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,18 +70,6 @@ Unit-Test results of last run across multiple OS-versions and Compiler-versions
7070✖️ : Compilation failure.
7171
7272<br >
73-
74- | 🖥️ OS ➡️ <br > 🤖 Compiler ⬇️ | ** Ubuntu 22.04** | ** macOS-13** | ** macOS-12** | ** macOS-11** | ** Windows 10<br >VS 17 - 2022** | ** Windows 10<br >VS 16 - 2019** |
75- | ------------| ------------------| --------------| --------------| --------------| -------------------------------| -------------------------------|
76- | ** g++ 13** | ✅ | ❌1 | ✅ | NA | - | - |
77- | ** g++ (11,12)** | ✅ (default:11) | ❌1 | ✅ | ✅ | - | - |
78- | ** clang++ 15** | ✅ | - | - | - | - | - |
79- | ** clang++ (** <span style =" color :grey " >12\* ,13\# ,14\# </span >** )** | ❌2 | - | - | - | - | - |
80- | ** AppleClang 15** | NA | ✅ | NA | NA | NA | NA |
81- | ** AppleClang 14** | NA | NA | ✅ | NA | NA | NA |
82- | ** msvc 19** | NA | NA | NA | NA | ✅ (default) | NA |
83- | ** clangCL 16** | - | - | - | - | ✅ | - |
84- | ** clangCL 12** | - | - | - | - | - | ✅ |
8573
8674❌1 : <span style =" color :grey " >macOS-13</span > : New linker breaks the build. Both Cmake and Linker needs an update for this fix.
8775
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ typedef SSIZE_T ssize_t;
5252
5353#define RAPIDCSV_VERSION_MAJOR 4
5454#define RAPIDCSV_VERSION_MINOR 0
55- #define RAPIDCSV_VERSION_PATCH 8
55+ #define RAPIDCSV_VERSION_PATCH 9
5656
5757#define UPSTREAM___RAPIDCSV__VERSION 8.88
5858
@@ -1315,7 +1315,7 @@ namespace rapidcsv
13151315 (static_cast <std::codecvt_mode>(std::consume_header | std::little_endian)) :
13161316 (static_cast <std::codecvt_mode>(std::consume_header));
13171317 std::wstring_convert<std::codecvt_utf16<wchar_t , 0x10ffff , mode>> utf16conv;
1318- const std::wstring& utf16 = utf16conv.from_bytes (buffer.data (), buffer.data () + length);
1318+ const std::wstring utf16 = utf16conv.from_bytes (buffer.data (), buffer.data () + length);
13191319
13201320 std::wstringstream wss (utf16);
13211321 std::string utf8 = _toString (wss.str ());
You can’t perform that action at this time.
0 commit comments