You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
path.cpp: fixed -Wuseless-cast GCC warning with C++17 (#7771)
building with the GUI enabled will implicitly switch the standard to
C++17.
```
/home/runner/work/cppcheck/cppcheck/lib/path.cpp: In function ‘bool hasEmacsCppMarker(const char*)’:
/home/runner/work/cppcheck/cppcheck/lib/path.cpp:246:40: error: useless cast to type ‘char*’ [-Werror=useless-cast]
246 | const char * const res = fgets(const_cast<char*>(buf.data()), buf.size(), fp);
|
```
0 commit comments