diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-17 19:21:10 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-17 19:21:10 -0600 |
commit | dffa5374ca560213452039fe569a70ca21b58a85 (patch) | |
tree | b7ebb146cee60e9973b3f158196d56abd28c0f42 /chill/include/chill_error.hh | |
parent | bdaf6dc251d98fc1c93165fa8579378204b395e1 (diff) | |
download | chill-dffa5374ca560213452039fe569a70ca21b58a85.tar.gz chill-dffa5374ca560213452039fe569a70ca21b58a85.tar.bz2 chill-dffa5374ca560213452039fe569a70ca21b58a85.zip |
added file doc
Diffstat (limited to 'chill/include/chill_error.hh')
-rw-r--r-- | chill/include/chill_error.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chill/include/chill_error.hh b/chill/include/chill_error.hh index ca0936e..88e49fc 100644 --- a/chill/include/chill_error.hh +++ b/chill/include/chill_error.hh @@ -1,6 +1,11 @@ #ifndef CHILL_ERROR_HH #define CHILL_ERROR_HH +/*! + * \file + * \brief CHiLL runtime exceptions + */ + //! for loop transformation problem struct loop_error: public std::runtime_error { loop_error(const std::string &msg): std::runtime_error(msg){} |