Anybody know where I can get library and include directories and files for msvc so that I can use them on linux with clang-cl ?
Any good book on data structures algorithms in c++ ?
Hello guys, you know how on windows you need the dll to be around the same dir as the executable, well, was wondering how I can make cmake copy over the dll dependencies into...
Anybody know any Java game Dev communities? Doesn't have to be telegram, can be anything even a forum.
Do companies use C++ ?
C++ can do everything, just wondering though who uses it apart from hobbyist?
Is there a way to parse string to json in qt?
Does anybody know the difference between clang++ and clang-cl on windows platform? Do they both produce MSVC compatible libraries?
Hey how to get passed this error? using clang-cl finally with cmake, but get this funny error with msvc19 headers... using clang 12 btw
std::shared_lock means that many threads can lock onto the same mutex at the same time when using it right?
How much RAM does eclipse swallow this days?
Then what are they talking about here? since that would mean that i, doesn't die even if i_ dies
I was wondering, since mingw and msvc libraries aren't compatible in terms of C++ but work okay with C, what if one creates a plugin, maybe with Boost.DLL which I think under ...
Okay, and what does a variable defined with & mean when inside a class? EG: class A{ int &a; A(int &a_):a(a_): } is a refrence?
Guys, is it safe to assume that all C++ devs have Boost on their system when releasing a library for consumption that requires Boost?
How did you end up passing by value in java? Thaught everything was refrence except for int,float, (lower lettered things)
By the way, in hibernate, if a class is an entity must getters and setters be public? do they even need to exist for it tow work?
what does cmd show?
Okay, how about mingw? How to target it but make it need the __declscpec(dllexport/dllimport) so that atleast I have some similar thing to msvc?
void something (int z): void something (int z, float y); Given there is no name mangling in C, how will they differentiate the two above?