summaryrefslogtreecommitdiff
path: root/include/chill_error.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/chill_error.hh')
-rw-r--r--include/chill_error.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/chill_error.hh b/include/chill_error.hh
index c5601ae..7321e75 100644
--- a/include/chill_error.hh
+++ b/include/chill_error.hh
@@ -7,22 +7,22 @@
*/
//! for loop transformation problem
-struct loop_error: public std::runtime_error {
- loop_error(const std::string &msg): std::runtime_error(msg){}
+struct loop_error : public std::runtime_error {
+ loop_error(const std::string &msg) : std::runtime_error(msg) {}
};
//! for generic compiler intermediate code handling problem
-struct ir_error: public std::runtime_error {
- ir_error(const std::string &msg): std::runtime_error(msg){}
+struct ir_error : public std::runtime_error {
+ ir_error(const std::string &msg) : std::runtime_error(msg) {}
};
//! for specific for expression to preburger math translation problem
-struct ir_exp_error: public ir_error {
- ir_exp_error(const std::string &msg): ir_error(msg){}
+struct ir_exp_error : public ir_error {
+ ir_exp_error(const std::string &msg) : ir_error(msg) {}
};
-struct omega_error: public std::runtime_error {
- omega_error(const std::string &msg): std::runtime_error(msg){}
+struct omega_error : public std::runtime_error {
+ omega_error(const std::string &msg) : std::runtime_error(msg) {}
};
#endif