commit | 7ea35239a6d0617af428b02f8d520191eefcfa2e | [log] [tgz] |
---|---|---|
author | Jim Ingham <jingham@apple.com> | Wed Oct 27 22:58:34 2010 +0000 |
committer | Jim Ingham <jingham@apple.com> | Wed Oct 27 22:58:34 2010 +0000 |
tree | 9d231a7317ff6982088cea8df25d5bc6d259b6ad | |
parent | 2763c6491cb2bfa25dbee34c9fa0b821abb3cda7 [diff] [blame] |
Replace unnecessary dynamic_cast with static_cast. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@117503 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Breakpoint/BreakpointLocation.cpp b/source/Breakpoint/BreakpointLocation.cpp index 609a41e..525efd3 100644 --- a/source/Breakpoint/BreakpointLocation.cpp +++ b/source/Breakpoint/BreakpointLocation.cpp
@@ -352,7 +352,7 @@ { s->EOL(); s->Indent("compile unit = "); - dynamic_cast<FileSpec*>(sc.comp_unit)->GetFilename().Dump (s); + static_cast<FileSpec*>(sc.comp_unit)->GetFilename().Dump (s); if (sc.function != NULL) {