diff options
-rw-r--r-- | tools/llvm-cov/SourceCoverageViewText.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-cov/SourceCoverageViewText.cpp b/tools/llvm-cov/SourceCoverageViewText.cpp index a7cb5075583..50c87607ed0 100644 --- a/tools/llvm-cov/SourceCoverageViewText.cpp +++ b/tools/llvm-cov/SourceCoverageViewText.cpp @@ -19,8 +19,8 @@ using namespace llvm; namespace { -constexpr unsigned LineCoverageColumnWidth = 7; -constexpr unsigned LineNumberColumnWidth = 5; +static const unsigned LineCoverageColumnWidth = 7; +static const unsigned LineNumberColumnWidth = 5; /// \brief Get the width of the leading columns. unsigned getCombinedColumnWidth(const CoverageViewOptions &Opts) { |