[svn-r27553] Replace svn:externals with hard copy of files

This commit is contained in:
Allen Byrne
2015-08-24 10:49:31 -05:00
parent 09c7bae68a
commit 831a556d08
20 changed files with 4386 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
#ifdef OLD_HEADER_FILENAME
#include <iostream>
int main(void) { return 0; }
#endif
#ifdef HDF_NO_NAMESPACE
namespace HDF {
int fnord;
}
int main(void) {
using namespace HDF;
fnord = 37;
return 0;
}
#endif
#ifdef HDF_NO_STD
#include <string>
using namespace std;
int main(void) {
string myString("testing namespace std");
return 0;
}
#endif
#ifdef BOOL_NOTDEFINED
int main(void) {
bool flag;
return 0;
}
#endif
#ifdef NO_STATIC_CAST
int main(void) {
float test_float;
int test_int;
test_float = 37.0;
test_int = static_cast <int> (test_float);
return 0;
}
#endif