diff options
author | Regina Pfeifer <regina@mailbox.org> | 2018-11-19 22:35:09 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2018-11-19 22:35:09 (GMT) |
commit | a2648dda97454efdc8c785d83cf039f6d2383e9e (patch) | |
tree | aacfe1e67c59539984df7229c9d6f645792681b1 /Source/cmELF.h | |
parent | 1dc85a6652bc8255ff7a9ef39028a7df45e3007b (diff) | |
download | CMake-a2648dda97454efdc8c785d83cf039f6d2383e9e.zip CMake-a2648dda97454efdc8c785d83cf039f6d2383e9e.tar.gz CMake-a2648dda97454efdc8c785d83cf039f6d2383e9e.tar.bz2 |
Mark operator bool explicit
Diffstat (limited to 'Source/cmELF.h')
-rw-r--r-- | Source/cmELF.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmELF.h b/Source/cmELF.h index 9172f38..c8a91e4 100644 --- a/Source/cmELF.h +++ b/Source/cmELF.h @@ -32,7 +32,7 @@ public: std::string const& GetErrorMessage() const { return this->ErrorMessage; } /** Boolean conversion. True if the ELF file is valid. */ - operator bool() const { return this->Valid(); } + explicit operator bool() const { return this->Valid(); } /** Enumeration of ELF file types. */ enum FileType |