Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Ogda/Builders/voidaction.h')
-rw-r--r--Source/Ogda/Builders/voidaction.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/Source/Ogda/Builders/voidaction.h b/Source/Ogda/Builders/voidaction.h
index 7f18daf6..8ab24648 100644
--- a/Source/Ogda/Builders/voidaction.h
+++ b/Source/Ogda/Builders/voidaction.h
@@ -28,12 +28,11 @@
class Item;
class JobHandler;
-class VoidAction : public ActionBase
-{
- public:
- ManifestResult Run(const JobHandler& jh, const Item& y) override;
- inline const char* GetName() const override { return "void"; }
- inline const char* GetVersion() const override {return "2";}
- inline bool RunEvenOnIdenticalSource() const override { return true; }
- inline bool StoreResultInDatabase() const override { return false; }
+class VoidAction : public ActionBase {
+ public:
+ ManifestResult Run(const JobHandler& jh, const Item& y) override;
+ inline const char* GetName() const override { return "void"; }
+ inline const char* GetVersion() const override { return "2"; }
+ inline bool RunEvenOnIdenticalSource() const override { return true; }
+ inline bool StoreResultInDatabase() const override { return false; }
};