You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Windows 10
Clion (Cmake) with: CMAKE_CXX_STANDARD 17 and cmake_minimum_required(VERSION 3.15).
At the compile time : several error related to mutex:
error: 'mutex' in namespace 'std' does not name a type std::mutex _lock; (csv-parser\include\internal\basic_csv_parser.hpp:177:18)
note: 'std::mutex' is defined in header ''; did you forget to '#include '? #include "csv_row.hpp" (csv-parser\include\internal\basic_csv_parser.hpp:23:1:)
... etc.
Other errors related to : std::condition_variable and unlock
Note: I tested the same code on Linux Ubuntu 16.04 and it works very well. so the problem is with windows.
The text was updated successfully, but these errors were encountered:
Using Windows 10
Clion (Cmake) with: CMAKE_CXX_STANDARD 17 and cmake_minimum_required(VERSION 3.15).
At the compile time : several error related to mutex:
error: 'mutex' in namespace 'std' does not name a type std::mutex _lock; (csv-parser\include\internal\basic_csv_parser.hpp:177:18)
note: 'std::mutex' is defined in header ''; did you forget to '#include '? #include "csv_row.hpp" (csv-parser\include\internal\basic_csv_parser.hpp:23:1:)
... etc.
Other errors related to : std::condition_variable and unlock
Note: I tested the same code on Linux Ubuntu 16.04 and it works very well. so the problem is with windows.
The text was updated successfully, but these errors were encountered: