Skip to content

Commit 8290388

Browse files
committed
Remove redundant const qualifier
`ApplicationSetting::key()`, silences `-Wignored-qualifiers`
1 parent 6374806 commit 8290388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NotepadNext/ApplicationSettings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class ApplicationSetting
4444
{}
4545

4646
inline T getDefault() const { return mCallable ? mCallable() : mDefault ; }
47-
inline const char * const key() const { return mKey; }
47+
inline const char * key() const { return mKey; }
4848

4949
private:
5050
const char * const mKey;

0 commit comments

Comments
 (0)