[cfe-commits] [libcxx] r120915 - /libcxx/trunk/src/new.cpp

Howard Hinnant hhinnant at apple.com
Sat Dec 4 11:56:44 PST 2010


Author: hhinnant
Date: Sat Dec  4 13:56:43 2010
New Revision: 120915

URL: http://llvm.org/viewvc/llvm-project?rev=120915&view=rev
Log:
oops, forgot std::

Modified:
    libcxx/trunk/src/new.cpp

Modified: libcxx/trunk/src/new.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/new.cpp?rev=120915&r1=120914&r2=120915&view=diff
==============================================================================
--- libcxx/trunk/src/new.cpp (original)
+++ libcxx/trunk/src/new.cpp Sat Dec  4 13:56:43 2010
@@ -36,7 +36,7 @@
     {
         // If malloc fails and there is a new_handler,
         // call it to try free up memory.
-        std::new_handler nh = get_new_handler();
+        std::new_handler nh = std::get_new_handler();
         if (nh)
             nh();
         else





More information about the cfe-commits mailing list