Commit feef3e04 authored by Nick Korovaiko's avatar Nick Korovaiko Committed by Adam Procter

Fix warnings in RNGState for clang on macosx (#1968)

parent c9bab318
......@@ -42,7 +42,7 @@ namespace ngraph
}
virtual void activate() override;
virtual void deactivate() override;
virtual ~RNGState() {}
virtual ~RNGState() override {}
std::mt19937& get_generator() { return m_generator; }
std::bernoulli_distribution& get_distribution() { return m_distribution; }
protected:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment