From cf76d44411739c0b95349fba49ec3e732f958ab0 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Tue, 26 Mar 2019 18:05:53 +0000 Subject: [PATCH] [ConstantRange] Fix outdated comment; NFC Full/empty is required now, so there is no default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357014 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/ConstantRange.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/IR/ConstantRange.h b/include/llvm/IR/ConstantRange.h index 2d59b948529..11481a88fbf 100644 --- a/include/llvm/IR/ConstantRange.h +++ b/include/llvm/IR/ConstantRange.h @@ -58,7 +58,7 @@ class LLVM_NODISCARD ConstantRange { } public: - /// Initialize a full (the default) or empty set for the specified bit width. + /// Initialize a full or empty set for the specified bit width. explicit ConstantRange(uint32_t BitWidth, bool isFullSet); /// Initialize a range to hold the single specified value. -- 2.50.1