Skip to content

Commit

Permalink
Merge pull request #7 from DEIS-Tools/macos-fixes
Browse files Browse the repository at this point in the history
Fixed error/warnings from macos clang compile
  • Loading branch information
petergjoel authored Feb 11, 2020
2 parents e4237fc + 45d7179 commit 1a6f395
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/SimpleTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SimpleTree {
node_t* _high;
signature_t(const SimpleTree::node_t&);
} __attribute__((packed));
friend class ptrie::byte_iterator<signature_t>;
friend struct ptrie::byte_iterator<signature_t>;

using nodemap_t = ptrie::map<signature_t,std::shared_ptr<node_t>>;
SimpleTree() = default;
Expand Down
1 change: 0 additions & 1 deletion src/ZonotopStrategy.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@

class ZonotopStrategy {
public:
ZonotopStrategy(const ZonotopStrategy& orig) = default;
ZonotopStrategy(ZonotopStrategy&&) = default;
virtual ~ZonotopStrategy() = default;
ZonotopStrategy& operator=(ZonotopStrategy&&) = default;
Expand Down

0 comments on commit 1a6f395

Please sign in to comment.