summaryrefslogtreecommitdiffstats
path: root/test/atomic_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/atomic_test.cpp')
-rw-r--r--test/atomic_test.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/atomic_test.cpp b/test/atomic_test.cpp
new file mode 100644
index 0000000..6611c91
--- /dev/null
+++ b/test/atomic_test.cpp
@@ -0,0 +1,14 @@
+#include <iostream>
+#include "raul/AtomicInt.hpp"
+#include "raul/AtomicPtr.hpp"
+
+using namespace std;
+using namespace Raul;
+
+int
+main()
+{
+ cout << "Well, at least I compiled; that's gotta count for something eh?" << endl;
+
+ return 0;
+}