1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-15 23:12:44 +01:00

Move templated functions to sqlite-impl.hh

This ensures that use-sites properly trigger new monomorphisations on
one hand, and on the other hand keeps the main `sqlite.hh` clean and
interface-only. I think that is good practice in general, but in this
situation in particular we do indeed have `sqlite.hh` users that don't
need the `throw_` function.
This commit is contained in:
John Ericson 2022-04-20 16:57:06 +00:00
parent 3c220442ff
commit 05ec0beb40
3 changed files with 44 additions and 31 deletions

View file

@ -10,6 +10,7 @@
#include "topo-sort.hh"
#include "finally.hh"
#include "compression.hh"
#include "sqlite-impl.hh"
#include <iostream>
#include <algorithm>