diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 820509c2..ef727ed2 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -25,4 +25,4 @@ add_executable(example07 example07.cpp) target_link_libraries(example07 PUBLIC example_package wfc) build_info(TARGET example07) -wci_targets(example01 example02 example03 example04 example05 example06 example07 ) +wci_examples(example01 example02 example03 example04 example05 example06 example07 ) diff --git a/wfc/mutex.hpp b/wfc/mutex.hpp index 2bc94fa0..5ec44701 100644 --- a/wfc/mutex.hpp +++ b/wfc/mutex.hpp @@ -6,10 +6,15 @@ #pragma once -#include +#include namespace wfc{ -using namespace iow; +using wflow::empty_mutex; +using wflow::rwlock; +using wflow::read_lock; +using wflow::spinlock; +using wflow::longspinlock; +using wflow::spinlock_n; -} \ No newline at end of file +}