aboutsummaryrefslogtreecommitdiff
path: root/bpkg/database.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-06-09 08:57:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-06-10 07:15:52 +0200
commit843627b2d3f801a7e9e45af0cc2cd4654077fac8 (patch)
tree5c588297539bc0b41997c2490cbc0b5173b7a8e4 /bpkg/database.cxx
parent450d6159206501dd69c3e8877ad37eeb3cd15049 (diff)
Add butl::sha256 to types.hxx
Diffstat (limited to 'bpkg/database.cxx')
-rw-r--r--bpkg/database.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/bpkg/database.cxx b/bpkg/database.cxx
index b0a673e..d96c53b 100644
--- a/bpkg/database.cxx
+++ b/bpkg/database.cxx
@@ -10,8 +10,6 @@
#include <odb/schema-catalog.hxx>
#include <odb/sqlite/exceptions.hxx>
-#include <libbutl/sha256.hxx>
-
#include <bpkg/package.hxx>
#include <bpkg/package-odb.hxx>
#include <bpkg/diagnostics.hxx>
@@ -706,7 +704,7 @@ namespace bpkg
//
std::string schema;
{
- butl::sha256 h (d.string ());
+ sha256 h (d.string ());
for (size_t n (4);; ++n)
{