diff options
| author | Karol Kosek <krkk@krkk.ct8.pl> | 2020-12-30 16:01:26 +0100 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2020-12-30 20:31:39 +0100 |
| commit | 54c4fc7b36fea598d3b35ff9d00c451eefcaf710 (patch) | |
| tree | 58f9ae4abb520e774fef4ece031b03bbb4c4fa24 /src/main.cpp | |
| parent | 07a4ddc230c11c7249acd4c0363c6075e939f11b (diff) | |
| download | kristall-54c4fc7b36fea598d3b35ff9d00c451eefcaf710.tar.gz | |
const-reference large types
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8fe2c64..c7b6259 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -37,7 +37,7 @@ static QApplication * app; #define SSTR(X) STR(X) #define STR(X) #X -static QDir derive_dir(QDir const & parent, QString subdir) +static QDir derive_dir(QDir const & parent, QString const & subdir) { QDir child = parent; if(not child.mkpath(subdir)) { |
