gnulib: update to 776af40e0
[deliverable/binutils-gdb.git] / gdbsupport / common-utils.h
index 4429f086fce34d201a85ab087742b862ac57748a..28c08ee976678cb0563523b62966e1edc6debc55 100644 (file)
@@ -59,7 +59,11 @@ xfree (T *ptr)
 data type.  Use operator delete instead.");
 
   if (ptr != NULL)
-    free (ptr);                /* ARI: free */
+#ifdef GNULIB_NAMESPACE
+    GNULIB_NAMESPACE::free (ptr);      /* ARI: free */
+#else
+    free (ptr);                                /* ARI: free */
+#endif
 }
 
 
This page took 0.028222 seconds and 4 git commands to generate.