diff --git a/samples/boost/.gitignore b/samples/boost/.gitignore deleted file mode 100644 index 6a88a81e4..000000000 --- a/samples/boost/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -bin/* -logs/* diff --git a/samples/boost/build.sh b/samples/boost/build.sh deleted file mode 100644 index 7081d3d4b..000000000 --- a/samples/boost/build.sh +++ /dev/null @@ -1,16 +0,0 @@ -if [ "$3" = "" ];then - echo "Usage: $0 [boost-src-path] [compiler] [file]" - exit 1 -fi - -compiler=$2 - -[ -d "bin" ] || mkdir "bin" -rm -rf bin/* - -cp ../../src/easylogging++.h . - - -$compiler -I$1 $3 -o bin/$3.bin -std=c++11 - -rm easylogging++.h diff --git a/samples/boost/vector.cpp b/samples/boost/vector.cpp deleted file mode 100644 index ac736cfa1..000000000 --- a/samples/boost/vector.cpp +++ /dev/null @@ -1,15 +0,0 @@ -// Sample based on http://www.boost.org/doc/libs/1_51_0/libs/numeric/ublas/doc/vector.htm - -#include -#include -#include "easylogging++.h" - -_INITIALIZE_EASYLOGGINGPP - -int main () { - using namespace boost::numeric::ublas; - vector v (3); - for (unsigned i = 0; i < v.size (); ++ i) - v (i) = i; - LOG(INFO) << v; -}