diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-09-13 20:05:27 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-09-13 20:05:44 +0200 |
commit | 6b83174ffffbdfc3f876d94d5178e0b83f675cae (patch) | |
tree | 8833453d07470edd8099d2f556ac5740e15b1239 /src/libutil/json.hh | |
parent | cf4c31c872ac7fbf9c926a49303c5b8b5ffd02c8 (diff) |
std::uncaught_exception() -> std::uncaught_exceptions()
The former is deprecated in C++17. Fixes a clang warning.
Diffstat (limited to 'src/libutil/json.hh')
-rw-r--r-- | src/libutil/json.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/json.hh b/src/libutil/json.hh index 02a39917f..45a22f011 100644 --- a/src/libutil/json.hh +++ b/src/libutil/json.hh @@ -170,7 +170,7 @@ public: ~JSONPlaceholder() { - assert(!first || std::uncaught_exception()); + assert(!first || std::uncaught_exceptions()); } template<typename T> |