From: Chris Lattner Date: Mon, 10 Sep 2001 20:11:28 +0000 (+0000) Subject: Use correct style casts X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=243f1f73154f1f52858700f4d46eb3d169a2c267;p=oota-llvm.git Use correct style casts Types are not all constant now git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@544 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp index 3ed85584184..3974bf3e886 100644 --- a/lib/VMCore/ConstantFold.cpp +++ b/lib/VMCore/ConstantFold.cpp @@ -168,7 +168,7 @@ struct BoolRules : public TemplateRules { // different types. This allows the C++ compiler to automatically generate our // constant handling operations in a typesafe and accurate manner. // -template +template struct DirectRules : public TemplateRules > {