summaryrefslogtreecommitdiff
path: root/doc/reference/mutex.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/reference/mutex.adoc')
-rw-r--r--doc/reference/mutex.adoc16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/reference/mutex.adoc b/doc/reference/mutex.adoc
deleted file mode 100644
index d0493d6..0000000
--- a/doc/reference/mutex.adoc
+++ /dev/null
@@ -1,16 +0,0 @@
-== `sqlite/mutex.hpp`
-
-The mutex header provides to std::mutex compatible classes using the sqlite mutex implementation.
-
-This will allow C++ code to use mutex code matching the configuration of sqlite.
-This may include the mutex being a noop.
-
-[source,cpp,subs=+quotes]
-----
-// similar to std::mutex
-struct mutex;
-// similar to std::recursive_mutexx
-struct recursive_mutex;
-----
-
-