Drop namespace std after 95d4ed6778.

This commit is contained in:
Jérôme Duval
2015-11-08 00:38:19 +01:00
parent f10b49ed41
commit b49dd60c46
2 changed files with 2 additions and 2 deletions
@@ -514,7 +514,7 @@ Directory::CreateFile(const char* name, mode_t permissions, Node** _node)
return error;
// create a File object
File* file = new(std::nothrow) File(fVolume, entryOffset,
File* file = new(nothrow) File(fVolume, entryOffset,
entry.Cluster(fVolume.FatBits()), entry.Size(), name);
if (file == NULL)
return B_NO_MEMORY;
@@ -358,7 +358,7 @@ TarFS::Directory::Open(void** _cookie, int mode)
_inherited::Open(_cookie, mode);
EntryIterator* iterator
= new(std::nothrow) EntryIterator(fEntries.GetIterator());
= new(nothrow) EntryIterator(fEntries.GetIterator());
if (iterator == NULL)
return B_NO_MEMORY;