[core] Fix unused-parameter warnings #8110

Open
AndrewShkrob wants to merge 1 commit from AndrewShkrob/warnings/unused-parameter into master
Member
No description provided.
vng (Migrated from github.com) reviewed 2024-05-06 19:33:13 +00:00
biodranik (Migrated from github.com) reviewed 2024-05-06 21:41:07 +00:00
@ -2,4 +2,3 @@
set(OMIM_WARNING_FLAGS
$<$<NOT:$<CXX_COMPILER_ID:MSVC>>:-Wall -Wextra -Wpedantic>
$<$<NOT:$<CXX_COMPILER_ID:MSVC>>:-Wno-unused-parameter> # We have a lot of functions with unused parameters
)
biodranik (Migrated from github.com) commented 2024-05-06 21:40:52 +00:00

What are the pros of enabling this warning? I see the following cons:

  • Git blame is more complicated.
  • Where parameter names are removed, they're not clear and the reader should guess to understand.
  • Where parameter names are commented, it is not possible to comment large blocks of code with /* */ anymore.
What are the pros of enabling this warning? I see the following cons: - Git blame is more complicated. - Where parameter names are removed, they're not clear and the reader should guess to understand. - Where parameter names are commented, it is not possible to comment large blocks of code with /* */ anymore.
@ -151,4 +145,1 @@
file(COPY ${OTHER_FILES} DESTINATION ${CMAKE_BINARY_DIR})
omim_add_library(${PROJECT_NAME} ${SRC})
biodranik (Migrated from github.com) commented 2024-05-06 21:33:19 +00:00

Is it not needed anymore?

Is it not needed anymore?
biodranik (Migrated from github.com) commented 2024-05-06 21:33:23 +00:00

ditto

ditto
@ -107,3 +105,4 @@
int8_t const)
{
NamesDataSource result;
auto & names = result.names;
biodranik (Migrated from github.com) commented 2024-05-06 21:34:16 +00:00

cmon )

NamesDataSource EditableMapObject::GetNamesDataSource(StringUtf8Multilang const & source, vector<int8_t> const &, int8_t const)
cmon ) ```suggestion NamesDataSource EditableMapObject::GetNamesDataSource(StringUtf8Multilang const & source, vector<int8_t> const &, int8_t const) ```
@ -13,3 +13,3 @@
{
virtual void Download(storage::QueuedCountry && queuedCountry)
void Download(storage::QueuedCountry &&) override
{
biodranik (Migrated from github.com) commented 2024-05-06 21:37:10 +00:00

This is a different warning )

This is a different warning )
rtsisyk approved these changes 2025-01-11 09:12:29 +00:00
@ -13,2 +13,4 @@
#if defined(USE_PPROF)
ProfilerStart(path.c_str());
#else
UNUSED_VALUE(path);

AFAIK, Qt, which is one of examples of more or less readable C++ code, uses a similar macro to suppress unused arguments when they are unavoidable (e.g., when overriding certain interfaces). Does it make sense to use it everywhere instead of commenting out arguments in the declaration?

AFAIK, Qt, which is one of examples of more or less readable C++ code, uses a similar macro to suppress unused arguments when they are unavoidable (e.g., when overriding certain interfaces). Does it make sense to use it everywhere instead of commenting out arguments in the declaration?
AndrewShkrob reviewed 2025-01-11 14:40:01 +00:00
@ -13,2 +13,4 @@
#if defined(USE_PPROF)
ProfilerStart(path.c_str());
#else
UNUSED_VALUE(path);
Author
Member

What about building for Android/iOS? We don't want to include Qt libs there, don't we?

What about building for Android/iOS? We don't want to include Qt libs there, don't we?
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#8110
No description provided.