1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00

fix: made c'tor explicit

This commit is contained in:
Falk Werner 2020-02-16 21:38:37 +01:00
parent 77627b7c8b
commit ae9fb63900

View File

@ -9,7 +9,7 @@ class TempDir
TempDir(TempDir const &) = delete;
TempDir & operator=(TempDir const &) = delete;
public:
TempDir(char const * prefix);
explicit TempDir(char const * prefix);
~TempDir();
char const * path();
private: