More trailing whilespace removal

This commit is contained in:
Gregory Nutt
2014-04-13 16:22:22 -06:00
parent 3a1324741a
commit f8024cf409
1051 changed files with 3204 additions and 3207 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ config HAVE_CXX
bool "Have C++ compiler"
default n
---help---
Toolchain supports C++ and CXX, CXXFLAGS, and COMPILEXX have been
Toolchain supports C++ and CXX, CXXFLAGS, and COMPILEXX have been
defined in the configurations Make.defs file.
if HAVE_CXX
@@ -27,7 +27,7 @@ config HAVE_CXXINITIALIZE
default n
---help---
The platform-specific logic includes support for initialization
of static C++ instances for this architecture and for the selected
of static C++ instances for this architecture and for the selected
toolchain (via up_cxxinitialize()).
config CXX_NEWLONG
+2 -2
View File
@@ -37,8 +37,8 @@
# Sources
ASRCS =
CSRCS =
ASRCS =
CSRCS =
CXXSRCS = libxx_cxapurevirtual.cxx libxx_eabi_atexit.cxx libxx_cxa_atexit.cxx
+2 -2
View File
@@ -8,7 +8,7 @@ have a need for more extensive C++ support, the following libraries
are recommended:
- libstdc++ (part of GCC)
- STLport http://www.stlport.org/
- STLport http://www.stlport.org/
- uClibc++ http://cxx.uclibc.org/
- uSTL http://ustl.sourceforge.net/
@@ -24,7 +24,7 @@ At present, only the following are supported here:
- void __cxa_pure_virtual(void);
- int __aeabi_atexit(void* object, void (*destroyer)(void*), void *dso_handle);
- int __cxa_atexit(__cxa_exitfunc_t func, FAR void *arg, FAR void *dso_handle);
operator new
------------
+3 -3
View File
@@ -59,19 +59,19 @@ namespace std
dbg("C++: Vector .at() with argument out of range\n");
abort();
}
void __throw_length_error(const char*)
{
dbg("C++: Vector resize to excessive length\n");
abort();
}
void __throw_bad_alloc()
{
dbg("C++: Bad allocation\n");
abort();
}
void __throw_bad_function_call()
{
dbg("C++: Bad function call\n");