You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2012/02/17 10:17:34 UTC

svn commit: r1245357 - /incubator/ooo/trunk/main/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx

Author: hdu
Date: Fri Feb 17 09:17:34 2012
New Revision: 1245357

URL: http://svn.apache.org/viewvc?rev=1245357&view=rev
Log:
help gcc 4.6.0 on 32bit ubuntu 11.10"

For some strange reason compilation failed with mysterious problems in STL
especially with namespace problems for size_t

Modified:
    incubator/ooo/trunk/main/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx

Modified: incubator/ooo/trunk/main/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx?rev=1245357&r1=1245356&r2=1245357&view=diff
==============================================================================
--- incubator/ooo/trunk/main/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx (original)
+++ incubator/ooo/trunk/main/bridges/source/cpp_uno/gcc3_linux_intel/except.cxx Fri Feb 17 09:17:34 2012
@@ -19,13 +19,11 @@
  * 
  *************************************************************/
 
-
-
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_bridges.hxx"
 
-#include <stdio.h>
-#include <string.h>
+#include <cstdio>
+#include <cstring>
 #include <dlfcn.h>
 #include <cxxabi.h>
 #include <hash_map>