-
Notifications
You must be signed in to change notification settings - Fork 698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move argparse boilerplate code to private header #4169
Merged
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
ec6b9b6
refactor valhalla_add_elevation a bit and move the mjolnir util to baldr
nilsnolde 1132e0c
add -j flag to all multithreaded executables
nilsnolde 71918ab
changelog
nilsnolde 95f299c
remove deprecated heder
nilsnolde 918ecfa
oops
nilsnolde 6b8f931
moved the argparse boilerplate code to a private header which all pro…
nilsnolde 2ff4f01
cxxopts entry not needed in cmake
nilsnolde 1c78a88
add missing midgard header
nilsnolde 28b1d89
some fixes
nilsnolde c4a5e50
huch, quite a logical mistake..
nilsnolde a22ec55
Merge branch 'nn-concurrency2' into nn--exe-boilerplate
nilsnolde 2e7e735
few nits
nilsnolde 81785e4
more fixes
nilsnolde 57a76d7
remove left-overs
nilsnolde 30ff914
keep deduplication in the executable valhalla_add_elevation
nilsnolde 1ca6677
merge nn-concurrency2
nilsnolde 509e3b2
keep deduplication in the executable valhalla_add_elevation
nilsnolde a919eb6
Merge branch 'nn-concurrency2' into nn--exe-boilerplate
nilsnolde 9d81545
use __FILE__ to find the executable name; overhaul src/CMakeLists.txt…
nilsnolde d0b33c3
Merge branch 'master' into nn--exe-boilerplate
nilsnolde 3460c08
move get_tile_ids function into the executable
nilsnolde f042793
Merge branch 'master' into nn--exe-boilerplate
nilsnolde f4575c9
add filesystem::stem() to return the file name without extension and …
nilsnolde 79fbea3
Merge branch 'master' into nn--exe-boilerplate
nilsnolde File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
remove left-overs
- Loading branch information
commit 57a76d72e215fd80619735ff338d6819edf96abb
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can get this by messing around with
__FILE__
then you dont have to type every single one though i guess it has to be the name of the source file (which we do adhere to)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
jep, that worked, thanks! made it a function in
argparse_utils.h