Skip to content

Commit 522f63f

Browse files
committed
Remove now useless reference to namespace tr1
I found this when searching for std::shared_ptr in the code and removed it since the shared_ptr and now in plain STL. Signed-off-by: Jocelyn Legault <[email protected]>
1 parent 23ca159 commit 522f63f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PythonScript/src/PythonScript.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ void newScript()
578578

579579
ofn.lStructSize = sizeof(OPENFILENAMEA);
580580
ofn.hwndOwner = nppData._nppHandle;
581-
std::tr1::shared_ptr<char> userScriptsDir = WcharMbcsConverter::tchar2char(ConfigFile::getInstance()->getUserScriptsDir().c_str());
581+
std::shared_ptr<char> userScriptsDir = WcharMbcsConverter::tchar2char(ConfigFile::getInstance()->getUserScriptsDir().c_str());
582582
ofn.lpstrInitialDir = userScriptsDir.get();
583583
//ofn.lpstrFileTitle = "Choose filename for new script";
584584
ofn.lpstrFile = new char[MAX_PATH];

0 commit comments

Comments
 (0)