Skip to content

Commit

Permalink
Drop namespace std after 95d4ed6.
Browse files Browse the repository at this point in the history
  • Loading branch information
korli committed Nov 7, 2015
1 parent f10b49e commit b49dd60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/system/boot/loader/file_systems/fat/Directory.cpp
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/system/boot/loader/file_systems/tarfs/tarfs.cpp
Expand Up @@ -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;

Expand Down

0 comments on commit b49dd60

Please sign in to comment.