Remove tabs
llvm-svn: 111778
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: fae824a32df7241749d9d030661807e65d8defa9
diff --git a/src/new.cpp b/src/new.cpp
index ff06a9f..c0c9bf1 100644
--- a/src/new.cpp
+++ b/src/new.cpp
@@ -14,11 +14,11 @@
#if __APPLE__
#include <cxxabi.h>
// On Darwin, there are two STL shared libraries and a lower level ABI
- // shared libray. The global holding the current new handler is
+ // shared libray. The global holding the current new handler is
// in the ABI library and named __cxa_new_handler.
#define __new_handler __cxxabiapple::__cxa_new_handler
#else // __APPLE__
- static std::new_handler __new_handler;
+ static std::new_handler __new_handler;
#endif
// Implement all new and delete operators as weak definitions
@@ -34,8 +34,8 @@
void* p;
while ((p = ::malloc(size)) == 0)
{
- // If malloc fails and there is a new_handler,
- // call it to try free up memory.
+ // If malloc fails and there is a new_handler,
+ // call it to try free up memory.
if (__new_handler)
__new_handler();
else