diff options
author | Silvan Mosberger <contact@infinisil.com> | 2020-12-12 02:22:58 +0100 |
---|---|---|
committer | Silvan Mosberger <contact@infinisil.com> | 2020-12-12 03:31:52 +0100 |
commit | 730b152b190135adef2f53c7a80cfd1111d37ead (patch) | |
tree | 1ad977d618642e65345dc94efd919fe4b0d14f71 /src/libexpr/eval.cc | |
parent | bf9890396731a2bbe4f04a49684dee463d818906 (diff) |
Make Value::type private
This is an implementation detail and shouldn't be used. Use normalType()
and the various is<Type> functions instead
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 5f9d19b8d..1d11039ad 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -68,7 +68,7 @@ RootValue allocRootValue(Value * v) } -static void printValue(std::ostream & str, std::set<const Value *> & active, const Value & v) +void printValue(std::ostream & str, std::set<const Value *> & active, const Value & v) { checkInterrupt(); |