Replace an old C-style cast with a C++ cast (squelch warning)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28533 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-05-29 02:32:43 +00:00
parent 7dbb2d6f16
commit 3ccc7b4654

View File

@ -66,7 +66,7 @@ public:
// it's processed.
//
bool runOnFunction(Function &F) {
(*Out) << Banner << (Value&)F;
(*Out) << Banner << static_cast<Value&>(F);
return false;
}