Skip to content

Commit d5a00b1

Browse files
committed
refactor: move includes to "lockpp" subfolder
1 parent 3af2d0b commit d5a00b1

File tree

10 files changed

+5
-6
lines changed

10 files changed

+5
-6
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/assign_copy.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch2/catch.hpp>
2-
#include <lock.hpp>
2+
#include <lockpp/lock.hpp>
33
#include <string>
44

55
TEST_CASE("Check assign & copy", "[assign_copy]")

tests/custom_lock.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch2/catch.hpp>
2-
#include <lock.hpp>
2+
#include <lockpp/lock.hpp>
33

44
TEST_CASE("Check if custom locks work", "[custom_locking]")
55
{

tests/custom_mutex.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch2/catch.hpp>
2-
#include <lock.hpp>
2+
#include <lockpp/lock.hpp>
33

44
TEST_CASE("Check if custom mutexes work", "[custom_mutex]")
55
{

tests/locking.test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#define CONFIG_CATCH_MAIN
22
#include <catch2/catch.hpp>
3-
43
#include <future>
5-
#include <lock.hpp>
4+
#include <lockpp/lock.hpp>
65
#include <thread>
76

87
TEST_CASE("Check if simultaneous access causes dead-lock", "[locking]")

tests/move_types.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <catch2/catch.hpp>
2-
#include <lock.hpp>
2+
#include <lockpp/lock.hpp>
33

44
template <typename T> class allows_assign
55
{

0 commit comments

Comments
 (0)