Changeset 10777
- Timestamp:
- Nov 8, 2015, 11:16:22 AM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/libraries
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/Loader.cc
r10772 r10777 31 31 #include <sstream> 32 32 #include <tinyxml/ticpp.h> 33 #include <boost/scoped_ptr.hpp>34 33 #include <boost/filesystem.hpp> 35 34 #include <boost/filesystem/fstream.hpp> … … 80 79 { 81 80 // Use the LuaState to replace the XML tags (calls our function) 82 boost::scoped_ptr<LuaState> luaState(new LuaState());81 const std::unique_ptr<LuaState> luaState(new LuaState()); 83 82 luaState->setTraceMap(lineTrace); 84 83 luaState->setIncludeParser(&Loader::replaceLuaTags); -
code/branches/cpp11_v2/src/libraries/util/StringUtils.cc
r9550 r10777 36 36 #include <cctype> 37 37 #include <ctime> 38 #include <boost/scoped_array.hpp>39 38 #include "Convert.h" 40 39 #include "Math.h" … … 482 481 size_t cols = str1.size() + 1; 483 482 size_t rows = str2.size() + 1; 484 boost::scoped_array<int> matrix(new int[rows * cols]);483 const std::unique_ptr<int[]> matrix(new int[rows * cols]); 485 484 486 485 for (size_t r = 0; r < rows; ++r)
Note: See TracChangeset
for help on using the changeset viewer.