]> granicus.if.org Git - clang/commitdiff
If NDEBUG is set, don't include any of the code for visualizing inheritance hierarchies
authorDouglas Gregor <dgregor@apple.com>
Thu, 23 Oct 2008 03:52:39 +0000 (03:52 +0000)
committerDouglas Gregor <dgregor@apple.com>
Thu, 23 Oct 2008 03:52:39 +0000 (03:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58029 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/InheritViz.cpp

index fcba50e429a8288a2e7a09cbbb25ebb552ee49f6..b817ed613f1cd4eb1e3498ba9be3489aa6f47704 100644 (file)
@@ -25,6 +25,7 @@ using namespace llvm;
 
 namespace clang {
 
+#ifndef NDEBUG
 /// InheritanceHierarchyWriter - Helper class that writes out a
 /// GraphViz file that diagrams the inheritance hierarchy starting at
 /// a given C++ class type. Note that we do not use LLVM's
@@ -130,6 +131,7 @@ InheritanceHierarchyWriter::WriteNodeReference(QualType Type,
     Out << "_" << DirectBaseCount[CanonType];
   return Out;
 }
+#endif
 
 /// viewInheritance - Display the inheritance hierarchy of this C++
 /// class using GraphViz.