diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 22:04:09 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 22:04:09 +0100 |
commit | dff52c72a9199ceea4eaf67c270916ae11238b45 (patch) | |
tree | c5d298bb0abcdece06060067789fb303e6c8897f /src/crepe/facade/DB.h | |
parent | bfb4dffccec0a902586927c41b2454c8ddacd9e3 (diff) | |
parent | 1cc120a0031cfc19c35240da8390d9129b4d75a3 (diff) |
Merge branch 'master' into loek/scripts
Diffstat (limited to 'src/crepe/facade/DB.h')
-rw-r--r-- | src/crepe/facade/DB.h | 4 |
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: |