From c800f473950066c932cbb88fca17f9d31385e76c Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 11 Dec 2017 11:51:55 -0600 Subject: [PATCH] Fix forward-decl of Bindings as "class", match definition. (appease clang -Wmismatched-tags warning) --- src/nix/command.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix/command.hh b/src/nix/command.hh index daa3b3fa7..6b34e3881 100644 --- a/src/nix/command.hh +++ b/src/nix/command.hh @@ -6,7 +6,7 @@ namespace nix { struct Value; -struct Bindings; +class Bindings; class EvalState; /* A command is an argument parser that can be executed by calling its