Skip to content

Commit 824437a

Browse files
committed
replace std::auto_ptr with std::unique_ptr
1 parent c7b5d3e commit 824437a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/IlmCtl/CtlInterpreter.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,7 @@ void Interpreter::_loadModule(const std::string &moduleName,
303303
// set up the source code string for parsing.
304304
//
305305

306-
#if __cplusplus >= 201103L
307306
std::unique_ptr<istream> input;
308-
#else
309-
std::auto_ptr<istream> input;
310-
#endif
311307

312308
if (!moduleSource.empty())
313309
{

0 commit comments

Comments
 (0)