-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cran-check-warnings' of https://github.com/davidchall/i…
…paddress into cran-check-warnings
- Loading branch information
Showing
8 changed files
with
16 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
PKG_CPPFLAGS = -I../inst/include/ | ||
PKG_CXXFLAGS = -DASIO_STANDALONE -DASIO_NO_DEPRECATED -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS | ||
PKG_CPPFLAGS = -I../inst/include/ -DASIO_STANDALONE -DASIO_NO_DEPRECATED |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#ifndef __IPADDRESS_ASIO_CONFIG__ | ||
#define __IPADDRESS_ASIO_CONFIG__ | ||
|
||
// libc++ throws bogus warning about allocator<void> -- https://llvm.org/PR50299 | ||
#if defined(_LIBCPP_VERSION) && (_LIBCPP_VERSION < 13000) && defined(_LIBCPP_STD_VER) && (_LIBCPP_STD_VER == 17) | ||
#define _LIBCPP_DISABLE_DEPRECATION_WARNINGS | ||
#endif | ||
|
||
#endif |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#include <Rcpp.h> | ||
#include "asio_config.h" | ||
#include <asio/ip/tcp.hpp> | ||
#include <ipaddress.h> | ||
#include "warn.h" | ||
|
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