summaryrefslogtreecommitdiff
path: root/cpukit/include/rtems/error.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/error.hpp')
-rw-r--r--cpukit/include/rtems/error.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/include/rtems/error.hpp b/cpukit/include/rtems/error.hpp
index a62ee966c6..cb705826d4 100644
--- a/cpukit/include/rtems/error.hpp
+++ b/cpukit/include/rtems/error.hpp
@@ -50,19 +50,19 @@ namespace rtems
{
const rtems_status_code sc;
public:
- runtime_error (const rtems_status_code sc);
- runtime_error (const rtems_status_code sc, const std::string& what);
- runtime_error (const rtems_status_code sc, const char* what);
- ~runtime_error ();
+ runtime_error(const rtems_status_code sc);
+ runtime_error(const rtems_status_code sc, const std::string& what);
+ runtime_error(const rtems_status_code sc, const char* what);
+ ~runtime_error();
};
/**
* Throw a rtems::runtime_error exception if the RTEMS status code is
* not RTEMS_SUCCESSFUL.
*/
- void runtime_error_check (const rtems_status_code sc);
- void runtime_error_check (const rtems_status_code sc, const std::string& what);
- void runtime_error_check (const rtems_status_code sc, const char* what);
+ void runtime_error_check(const rtems_status_code sc);
+ void runtime_error_check(const rtems_status_code sc, const std::string& what);
+ void runtime_error_check(const rtems_status_code sc, const char* what);
};
#endif