Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
onurulgen committed Jun 12, 2024
1 parent 41cd5a1 commit 65934f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion niftyreg_build_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
425
428
1 change: 1 addition & 0 deletions reg-lib/ComputeFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@

class ComputeFactory {
public:
virtual ~ComputeFactory() = default;
virtual Compute* Produce(Content& con) { return new Compute(con); }
};
2 changes: 2 additions & 0 deletions reg-lib/ContentCreatorFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ enum class ContentType { Base, Aladin, Def, F3d, F3d2 };

class ContentCreatorFactory {
public:
virtual ~ContentCreatorFactory() = default;

virtual ContentCreator* Produce(const ContentType conType) {
switch (conType) {
case ContentType::Base:
Expand Down
1 change: 1 addition & 0 deletions reg-lib/MeasureCreatorFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@

class MeasureCreatorFactory {
public:
virtual ~MeasureCreatorFactory() = default;
virtual MeasureCreator* Produce() { return new MeasureCreator(); }
};

0 comments on commit 65934f2

Please sign in to comment.