summaryrefslogtreecommitdiffstats
path: root/test/double_buffer_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/double_buffer_test.cpp')
-rw-r--r--test/double_buffer_test.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/double_buffer_test.cpp b/test/double_buffer_test.cpp
index f5f7286..d4d0554 100644
--- a/test/double_buffer_test.cpp
+++ b/test/double_buffer_test.cpp
@@ -33,16 +33,9 @@ main(int argc, char** argv)
return 1;
}
- DoubleBuffer<int> db2(db);
- if (db2.get() != 42) {
- return 1;
- }
-
db.set(43);
if (db.get() != 43) {
return 1;
- } else if (db2.get() != 42) {
- return 1;
}
return 0;