Changeset b1cd380c in mainline for uspace/lib/cpp/include/exception
- Timestamp:
- 2018-07-05T21:41:17Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ac47ba95
- Parents:
- 75848a8
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2017-10-13 17:17:24)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/exception
r75848a8 rb1cd380c 27 27 */ 28 28 29 #ifndef LIBCPP_EXCEPTION 30 #define LIBCPP_EXCEPTION 31 32 namespace std 33 { 34 35 class exception 36 { 37 public: 38 exception() = default; 39 exception(const exception&) = default; 40 exception& operator=(const exception&) noexcept; 41 virtual const char* what() const; 42 virtual ~exception() = default; 43 }; 44 45 } 46 47 #endif 29 #include <impl/exception.hpp>
Note:
See TracChangeset
for help on using the changeset viewer.