diff options
author | Vedant Kumar <vsk@apple.com> | 2016-07-15 22:44:54 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-07-15 22:44:54 +0000 |
commit | 6ab6b36475a4339e4a788b9f8ea40b25f6c9d033 (patch) | |
tree | e395e1ae22175ac791add43fef955747f939f97e /llvm/tools/llvm-cov/CoverageViewOptions.h | |
parent | 7a4bd83c6cc1a3c6b12ee9f77c22fe4da650730a (diff) | |
download | bcm5719-llvm-6ab6b36475a4339e4a788b9f8ea40b25f6c9d033.tar.gz bcm5719-llvm-6ab6b36475a4339e4a788b9f8ea40b25f6c9d033.zip |
[llvm-cov] Document a few private fields of CodeCoverageTool (NFC)
llvm-svn: 275639
Diffstat (limited to 'llvm/tools/llvm-cov/CoverageViewOptions.h')
-rw-r--r-- | llvm/tools/llvm-cov/CoverageViewOptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-cov/CoverageViewOptions.h b/llvm/tools/llvm-cov/CoverageViewOptions.h index 873eae885a7..eafc0cfd165 100644 --- a/llvm/tools/llvm-cov/CoverageViewOptions.h +++ b/llvm/tools/llvm-cov/CoverageViewOptions.h @@ -40,7 +40,7 @@ struct CoverageViewOptions { } /// \brief Check if an output directory has been specified. - bool hasOutputDirectory() const { return ShowOutputDirectory != ""; } + bool hasOutputDirectory() const { return !ShowOutputDirectory.empty(); } }; } |