RInside Version 0.2.16
compiler.cpp
Go to the documentation of this file.
1 
2 #include <Rcpp.h>
3 
4 // [[Rcpp::export]]
5 void showCompiler() {
6 #if defined(__DATE__)
7  const char *date = __DATE__;
8 #else
9  const char *date = "<unknown>";
10 #endif
11 #if defined(__VERSION__)
12  const char *ver = __VERSION__;
13 #else
14  const char *ver = "<unknown>";
15 #endif
16  Rcpp::Rcout << "Compiled on " << date << " by compiler version " << ver << std::endl;
17 }
void showCompiler()
Definition: compiler.cpp:5