From a91a3e04895f2049f7607cfe6fd1aa7b276ed3da Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sun, 20 Nov 2011 11:22:03 +0000 Subject: [PATCH] Make an obviously const interface actually be marked as const. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145009 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/BranchProbability.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/BranchProbability.h b/include/llvm/Support/BranchProbability.h index 4b5d9044007..eedf69247ef 100644 --- a/include/llvm/Support/BranchProbability.h +++ b/include/llvm/Support/BranchProbability.h @@ -42,7 +42,7 @@ public: uint32_t getDenominator() const { return D; } // Return (1 - Probability). - BranchProbability getCompl() { + BranchProbability getCompl() const { return BranchProbability(D - N, D); }