• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling tfs 0.4 Boost

Syiko

Scripter/Developer
Premium User
Joined
Aug 28, 2017
Messages
482
Solutions
3
Reaction score
108
player.cpp:5441:18: error: ‘lexical_cast’ is not a member of ‘boost’
setStorage(key, boost::lexical_cast<std::string>(value));
 
player.cpp:5441:18: error: ‘lexical_cast’ is not a member of ‘boost’
setStorage(key, boost::lexical_cast<std::string>(value));
If anyone else get this error:
Add at top of file (in this case player.cpp):
Code:
#include <boost/lexical_cast.hpp>

Added as error no 15:
 
Back
Top