-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor bitfield calculations for increased portability (#124)
* nanoduration / nanoduration returns double instead of integer64 * incomplete solution for bitfield removal - NA is not yet handled correctly * handle neg numbers * remove '-mno-ms-bitfields' for Windows compilation * Additional polish for bitfield change * Roll micro version and date, update NEWS --------- Co-authored-by: lsilvest <lsilvestri@ztsdb.org>
- Loading branch information
1 parent
0beec0c
commit d3ec808
Showing
11 changed files
with
162 additions
and
161 deletions.
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## Compile as C++17 | ||
CXX_STD = CXX17 | ||
|
||
## We need headers from our package, the directory is not automatically included | ||
PKG_CXXFLAGS = -I../inst/include |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## Compile as C++17 | ||
CXX_STD = CXX17 | ||
|
||
## We need headers from our package, the directory is not automatically included | ||
PKG_CXXFLAGS = -I../inst/include -mno-ms-bitfields | ||
PKG_CXXFLAGS = -I../inst/include |
Oops, something went wrong.