diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-02-10 15:24:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-02-10 15:24:08 +0200 |
commit | e833a0f65823673fd8aed86d9d1a5c5a8b43330e (patch) | |
tree | 40ee85d1a0416008257868325931df272ca13b4d | |
parent | b978ab110d5dd11b4efecb14830c849f89210919 (diff) |
Add missing const to deleted operator=()
-rw-r--r-- | bpkg/package-skeleton.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/package-skeleton.hxx b/bpkg/package-skeleton.hxx index b26c7b9..1a56bfb 100644 --- a/bpkg/package-skeleton.hxx +++ b/bpkg/package-skeleton.hxx @@ -109,7 +109,7 @@ namespace bpkg package_skeleton& operator= (package_skeleton&&); package_skeleton (const package_skeleton&); - package_skeleton& operator= (package_skeleton&) = delete; + package_skeleton& operator= (const package_skeleton&) = delete; private: // Create the skeleton if necessary and (re)load the build system state. |