• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Compiling tfs 0.4 Boost

MaSc

TFS Scripter
Joined
Aug 28, 2017
Messages
500
Solutions
3
Reaction score
118
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