aboutsummaryrefslogtreecommitdiff
path: root/bpkg/manifest-utility.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-10-27 16:25:42 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-10-27 16:25:42 +0200
commitceaad6480139e3c68af2e3d2dbe78588fcdc034f (patch)
treef741dd4506252d97edc4a6250b7db4abfd3cb7fa /bpkg/manifest-utility.cxx
parenta97b12a027546b37f66d3e08064f92f5539cf79e (diff)
Suppress (potential) bogus GCC 12 -Wrestrict warnings
Diffstat (limited to 'bpkg/manifest-utility.cxx')
-rw-r--r--bpkg/manifest-utility.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/manifest-utility.cxx b/bpkg/manifest-utility.cxx
index d6a0fd9..5bd273d 100644
--- a/bpkg/manifest-utility.cxx
+++ b/bpkg/manifest-utility.cxx
@@ -474,7 +474,7 @@ namespace bpkg
for (const path& p: bps)
{
path f (bd / p);
- f += "." + e;
+ f += '.' + e;
append_file (f);
}
@@ -610,7 +610,7 @@ namespace bpkg
"package directory");
if (!erp)
- e += " " + d.string ();
+ e += ' ' + d.string ();
throw runtime_error (e);
}
@@ -642,7 +642,7 @@ namespace bpkg
string e ("unable to find bootstrap.build file in package directory");
if (!erp)
- e += " " + d.string ();
+ e += ' ' + d.string ();
throw runtime_error (e);
}