We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 177ec82 commit cc1fc5cCopy full SHA for cc1fc5c
source/parser/font.cpp
@@ -65,7 +65,7 @@ FontProcessingException::FontProcessingException(FT_Error ftErr) :
65
mFreeTypeError(ftErr)
66
{}
67
68
-const char* FontProcessingException::what() const
+const char* FontProcessingException::what() const noexcept
69
{
70
#undef FTERRORS_H_
71
#define FT_ERROR_START_LIST switch(mFreeTypeError) {
source/parser/font.h
@@ -75,7 +75,7 @@ using namespace pov_base;
75
struct FontProcessingException : std::exception
76
77
FontProcessingException(FT_Error ftErr);
78
- virtual const char* what() const override;
+ virtual const char* what() const noexcept override;
79
protected:
80
FT_Error mFreeTypeError;
81
};
0 commit comments