diff options
author | Neil <nyamatongwe@gmail.com> | 2021-04-26 18:06:06 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-04-26 18:06:06 +1000 |
commit | 4dcd314b9a77c93f650f5ff4e42b3695366e0095 (patch) | |
tree | a495cbab189fc35a754ef335c90c2e696dce372c /src/ViewStyle.h | |
parent | 8f04bd4802e0e6063175b20d36df0d812b6a5db4 (diff) | |
download | scintilla-mirror-4dcd314b9a77c93f650f5ff4e42b3695366e0095.tar.gz |
Avoid some warnings.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r-- | src/ViewStyle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index c47c91ee8..27abfdf6f 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -239,8 +239,8 @@ public: void AddMultiEdge(uptr_t wParam, sptr_t lParam); - std::optional<ColourAlpha> ElementColour(int index) const noexcept; - bool ElementAllowsTranslucent(int index) const noexcept; + std::optional<ColourAlpha> ElementColour(int index) const; + bool ElementAllowsTranslucent(int index) const; bool SetWrapState(int wrapState_) noexcept; bool SetWrapVisualFlags(int wrapVisualFlags_) noexcept; |