diff options
author | Neil <nyamatongwe@gmail.com> | 2021-10-30 14:30:16 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-10-30 14:30:16 +1100 |
commit | d0e3010d187e074f378f85b9cfcf68f944e1ab45 (patch) | |
tree | 073e8d9cba7a2091215296ec22ccb08d0b4a460b /src/XPM.h | |
parent | 576392a0bb0823b6f980db1d3db60149512e91e4 (diff) | |
download | scintilla-mirror-d0e3010d187e074f378f85b9cfcf68f944e1ab45.tar.gz |
Minor changes to avoid warnings from linters.
Diffstat (limited to 'src/XPM.h')
-rw-r--r-- | src/XPM.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -76,9 +76,9 @@ public: /// Get image by id. RGBAImage *Get(int ident); /// Give the largest height of the set. - int GetHeight() const; + int GetHeight() const noexcept; /// Give the largest width of the set. - int GetWidth() const; + int GetWidth() const noexcept; }; } |