diff options
Diffstat (limited to 'indra/llprimitive')
| -rw-r--r-- | indra/llprimitive/lldaeloader.cpp | 4 | ||||
| -rw-r--r-- | indra/llprimitive/llgltfloader.cpp | 2 | 
2 files changed, 1 insertions, 5 deletions
| diff --git a/indra/llprimitive/lldaeloader.cpp b/indra/llprimitive/lldaeloader.cpp index 2e4b013b77..2c357e1ac5 100644 --- a/indra/llprimitive/lldaeloader.cpp +++ b/indra/llprimitive/lldaeloader.cpp @@ -53,8 +53,6 @@  #pragma warning (default : 4264)  #endif -#include <boost/lexical_cast.hpp> -  #include "lldaeloader.h"  #include "llsdserialize.h"  #include "lljoint.h" @@ -2385,7 +2383,7 @@ std::string LLDAELoader::getElementLabel(daeElement *element)  		if (ind > 0)  		{ -			index_string = "_" + boost::lexical_cast<std::string>(ind); +			index_string = "_" + std::to_string(ind);  		}  		// if parent has a name or ID, use it diff --git a/indra/llprimitive/llgltfloader.cpp b/indra/llprimitive/llgltfloader.cpp index 7394f99794..8e498158d6 100644 --- a/indra/llprimitive/llgltfloader.cpp +++ b/indra/llprimitive/llgltfloader.cpp @@ -48,8 +48,6 @@  // TODO: includes inherited from dae loader.  Validate / prune -#include <boost/lexical_cast.hpp> -  #include "llsdserialize.h"  #include "lljoint.h" | 
