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
When compiling on Mac OS using LLVM Clang compiler, there are C++ issues (still compiling as C++11 with C++11 extensions)
Users/maca/Devel/duel6r/source/World.h:64:74: warning: field 'waveHeight' will be initialized after field 'animationSpeed'
[-Wreorder]
: walls(blockTextures), sprites(blockTextures), water(blockTextures), waveHeight(waveHeight), anim...
^
1 warning generated.
[ 31%] Building CXX object CMakeFiles/duel6r.dir/source/PlayerSkin.cpp.o
/Users/maca/Devel/duel6r/source/PlayerSkin.cpp:53:26: error: implicit instantiation of undefined template
'std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator >'
if (MY_KH3Open(fileName.c_str()) != MY_OK)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:188:33: note:
template is declared here
class _LIBCPP_TYPE_VIS_ONLY basic_string;
^
/Users/maca/Devel/duel6r/source/PlayerSkin.cpp:54:99: error: implicit instantiation of undefined template
'std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator >'
MY_Err(MY_ErrDump(MY_L("APP00091|Nepodarilo se otevrit soubor %s s texturami postav"), fileName.c_str()));
^
/Users/maca/Devel/duel6r/source/mylib/mylib.h:83:63: note: expanded from macro 'MY_Err'
define MY_Err(x) MY_Error (FILE, LINE, x)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:188:33: note:
template is declared here
class _LIBCPP_TYPE_VIS_ONLY basic_string;
^
/Users/maca/Devel/duel6r/source/PlayerSkin.cpp:58:81: error: implicit instantiation of undefined template
'std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator >'
g_app.con->printf(MY_L("APP00050|...Soubor %s obsahuje %d textur\n"), fileName.c_str(), ki.picts);
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:188:33: note:
template is declared here
class _LIBCPP_TYPE_VIS_ONLY basic_string;
The text was updated successfully, but these errors were encountered:
When compiling on Mac OS using LLVM Clang compiler, there are C++ issues (still compiling as C++11 with C++11 extensions)
Users/maca/Devel/duel6r/source/World.h:64:74: warning: field 'waveHeight' will be initialized after field 'animationSpeed'
[-Wreorder]
: walls(blockTextures), sprites(blockTextures), water(blockTextures), waveHeight(waveHeight), anim...
^
1 warning generated.
[ 31%] Building CXX object CMakeFiles/duel6r.dir/source/PlayerSkin.cpp.o
/Users/maca/Devel/duel6r/source/PlayerSkin.cpp:53:26: error: implicit instantiation of undefined template
'std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator >'
if (MY_KH3Open(fileName.c_str()) != MY_OK)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:188:33: note:
template is declared here
class _LIBCPP_TYPE_VIS_ONLY basic_string;
^
/Users/maca/Devel/duel6r/source/PlayerSkin.cpp:54:99: error: implicit instantiation of undefined template
'std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator >'
MY_Err(MY_ErrDump(MY_L("APP00091|Nepodarilo se otevrit soubor %s s texturami postav"), fileName.c_str()));
^
/Users/maca/Devel/duel6r/source/mylib/mylib.h:83:63: note: expanded from macro 'MY_Err'
define MY_Err(x) MY_Error (FILE, LINE, x)
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:188:33: note:
template is declared here
class _LIBCPP_TYPE_VIS_ONLY basic_string;
^
/Users/maca/Devel/duel6r/source/PlayerSkin.cpp:58:81: error: implicit instantiation of undefined template
'std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator >'
g_app.con->printf(MY_L("APP00050|...Soubor %s obsahuje %d textur\n"), fileName.c_str(), ki.picts);
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:188:33: note:
template is declared here
class _LIBCPP_TYPE_VIS_ONLY basic_string;
The text was updated successfully, but these errors were encountered: