diff options
Diffstat (limited to 'build/dump.cxx')
-rw-r--r-- | build/dump.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/dump.cxx b/build/dump.cxx index 7f4502e..62e032b 100644 --- a/build/dump.cxx +++ b/build/dump.cxx @@ -56,12 +56,12 @@ namespace build os << endl << ind; - if (t.id != target::static_type.id) + if (t != target::static_type) os << t.name << '{'; os << p; - if (t.id != target::static_type.id) + if (t != target::static_type) os << '}'; os << ':'; |