diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-04-07 18:40:59 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-21 07:25:32 (GMT) |
commit | 0101ace1319b5c97472649ec809b67299e2a46ce (patch) | |
tree | bfe5efb6d3e133e4b96994f5cd65d5417a26ff12 /Source/cmUnexpectedCommand.h | |
parent | 015001aaf138119f4825e3c84c0845c5127f9088 (diff) | |
download | CMake-0101ace1319b5c97472649ec809b67299e2a46ce.zip CMake-0101ace1319b5c97472649ec809b67299e2a46ce.tar.gz CMake-0101ace1319b5c97472649ec809b67299e2a46ce.tar.bz2 |
cmUnexpectedCommand: Replace with lambda expression
Diffstat (limited to 'Source/cmUnexpectedCommand.h')
-rw-r--r-- | Source/cmUnexpectedCommand.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/Source/cmUnexpectedCommand.h b/Source/cmUnexpectedCommand.h deleted file mode 100644 index 6e4cee5..0000000 --- a/Source/cmUnexpectedCommand.h +++ /dev/null @@ -1,40 +0,0 @@ -/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying - file Copyright.txt or https://cmake.org/licensing for details. */ -#ifndef cmUnexpectedCommand_h -#define cmUnexpectedCommand_h - -#include "cmConfigure.h" // IWYU pragma: keep - -#include <string> -#include <utility> -#include <vector> - -#include "cm_memory.hxx" - -#include "cmCommand.h" - -class cmExecutionStatus; - -class cmUnexpectedCommand : public cmCommand -{ -public: - cmUnexpectedCommand(std::string name, const char* error) - : Name(std::move(name)) - , Error(error) - { - } - - std::unique_ptr<cmCommand> Clone() override - { - return cm::make_unique<cmUnexpectedCommand>(this->Name, this->Error); - } - - bool InitialPass(std::vector<std::string> const& args, - cmExecutionStatus& status) override; - -private: - std::string Name; - const char* Error; -}; - -#endif |