diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-10-13 15:55:12 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-10-13 15:55:12 +0000 |
commit | e98fbba91f8806526cba67cb44c08a391b84a31f (patch) | |
tree | 963e12fe065af76089bce033be8d7ed23beb235e /include | |
parent | dba81cf40e5110e6af8cf29dfb63f1d801c9bcaa (diff) | |
download | external_llvm-e98fbba91f8806526cba67cb44c08a391b84a31f.zip external_llvm-e98fbba91f8806526cba67cb44c08a391b84a31f.tar.gz external_llvm-e98fbba91f8806526cba67cb44c08a391b84a31f.tar.bz2 |
Remove noisy semicolon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/RegionInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/RegionInfo.h b/include/llvm/Analysis/RegionInfo.h index b6ac1b3..737d46c 100644 --- a/include/llvm/Analysis/RegionInfo.h +++ b/include/llvm/Analysis/RegionInfo.h @@ -295,7 +295,7 @@ public: /// @brief Check if a Region is the TopLevel region. /// /// The toplevel region represents the whole function. - bool isTopLevelRegion() const { return exit == NULL; }; + bool isTopLevelRegion() const { return exit == NULL; } /// @brief Return a new (non canonical) region, that is obtained by joining /// this region with its predecessors. |