Add missing returns in non-void functions #2951
No reviewers
Labels
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
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#2951
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "fix_non_void_returns"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Distributions like openSUSE compile packages with the "-Werror=return-type".
Signed-off-by: Jaime Marquínez Ferrándiz jaime.marquinez.ferrandiz@fastmail.net
What is your compiler version? Modern compilers are smart enough to handle these cases.
No, it will silence the error if a new switch case will be added.
@ -30,7 +30,7 @@ public:
}
https://en.cppreference.com/w/cpp/language/attributes/noreturn
@ -22,7 +22,7 @@ public:
}
https://en.cppreference.com/w/cpp/language/attributes/noreturn
No, it will silence the error if a new switch case will be added.
No, it will silence the error if a new switch case will be added.
No, it will silence the error if a new switch case will be added. The code should not return in this case, but CRASH immediately, so we can fix the issue before releasing it to the public.
No, it will silence the error if a new switch case will be added.
I added
-Werror=return-type
to CMAKE_CXX_FLAGS to reproduce how the rpm would be built and it gets called with the following arguments:That's not ok, the current implementation is pretty well defined according to the C++17 standard. Anyway, if you are really interested to merge it, different fixes are needed.
I added the noreturn attribute where you asked
Since I have little experience with C++ and the codebase, could you point to some other place in the project where it's done?
It should be simple in most cases: do not use the default case that silences important compiler errors when a new enum member is added.
Ok, so I should do this instead?
Yes.
I have removed the incorrect usage of default. I can squash the commits if you want.
Please insert this line before each unreachable return:
CHECK(false, ("Unreachable"));
Done. But I had to link the opening_hours to the base library in order to use it, is it acceptable?
No, third parties should:
Done.
This line should probably be removed. It has no effect (
std::abort
has[[noreturn]]
) and will likely trigger -Wunreachable-code-return.