Changeset 74b03e3 in mainline
- Timestamp:
- 2018-07-05T21:41:23Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 47203ee3
- Parents:
- 0d221d2
- git-author:
- Dzejrou <dzejrou@…> (2018-05-08 17:20:51)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:23)
- Location:
- uspace/lib/cpp/include/impl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/exception.hpp
r0d221d2 r74b03e3 1 1 /* 2 * Copyright (c) 201 7Jaroslav Jindrak2 * Copyright (c) 2018 Jaroslav Jindrak 3 3 * All rights reserved. 4 4 * … … 45 45 exception& operator=(const exception&) noexcept = default; 46 46 virtual ~exception() = default; 47 47 48 virtual const char* what() const noexcept; 48 49 }; -
uspace/lib/cpp/include/impl/new.hpp
r0d221d2 r74b03e3 41 41 bad_alloc(const bad_alloc&); 42 42 bad_alloc& operator=(const bad_alloc&) = default; 43 virtual const char* what() const override;43 virtual const char* what() const noexcept override; 44 44 virtual ~bad_alloc() = default; 45 45 };
Note:
See TracChangeset
for help on using the changeset viewer.