aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/DB.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 20:25:24 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 20:25:24 +0100
commitf7a1ca3b7d934043b48602601e789bad27940405 (patch)
tree4622fd0f4f85b5856306d15b129ac1c3e64b567a /src/crepe/facade/DB.h
parente2c27d8c99a71e5d94ffe49027ec13afeb74b021 (diff)
parentb6aea9de9c9c8d86856bcd6c3b521e385bc00a69 (diff)
merge `master` into `loek/util`
Diffstat (limited to 'src/crepe/facade/DB.h')
-rw-r--r--src/crepe/facade/DB.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/crepe/facade/DB.h b/src/crepe/facade/DB.h
index 629b0eb..115c0f1 100644
--- a/src/crepe/facade/DB.h
+++ b/src/crepe/facade/DB.h
@@ -22,8 +22,10 @@ class DB {
public:
/**
* \param path The path of the database (created if nonexistant)
+ *
+ * \note If \p path is empty, the database is entirely in-memory
*/
- DB(const std::string & path);
+ DB(const std::string & path = "");
virtual ~DB() = default;
public: