diff options
author | Tom Hubrecht <github@mail.hubrecht.ovh> | 2024-05-28 11:19:08 +0200 |
---|---|---|
committer | Tom Hubrecht <github@mail.hubrecht.ovh> | 2024-05-29 09:54:47 +0200 |
commit | 81bdf8d2d672e135e68745e6975ad5edafadf13a (patch) | |
tree | 3a571a94b17c0436ac586f01384308a687b86ee4 /src/libutil/suggestions.cc | |
parent | 6fd6795bc4faed644c5f3abafdcb21638a119342 (diff) |
util.{hh,cc}: Split out terminal.{hh,cc}
Change-Id: I9de2296b4012d50f540124001d54d6ca3be4c6da
Diffstat (limited to 'src/libutil/suggestions.cc')
-rw-r--r-- | src/libutil/suggestions.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libutil/suggestions.cc b/src/libutil/suggestions.cc index 9510a5f0c..63dcf84b5 100644 --- a/src/libutil/suggestions.cc +++ b/src/libutil/suggestions.cc @@ -1,7 +1,9 @@ #include "suggestions.hh" #include "ansicolor.hh" -#include "util.hh" +#include "terminal.hh" + #include <algorithm> +#include <ostream> namespace nix { |