Skip to content

Commit

Permalink
Fixed error/warnings from macos clang compile
Browse files Browse the repository at this point in the history
  • Loading branch information
yrke committed Feb 11, 2020
1 parent e4237fc commit 45d7179
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 45d7179

Please sign in to comment.