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