Regards #340, #345: Removed unnecessary indentation of exceptions namespace + added end-of-namespace comment

This commit is contained in:
Eyal Rozenberg 2022-07-12 21:48:56 +03:00
parent 628dc9202b
commit cdd00fd805

View File

@ -371,6 +371,7 @@ class Value : public std::enable_shared_from_this<Value>
#pragma GCC diagnostic pop
#endif
namespace exceptions {
class exception : public std::exception
{
public:
@ -518,7 +519,8 @@ namespace exceptions {
{
}
};
}
} // namespace exceptions
template <typename T>
void throw_or_mimic(const std::string& text)