Commit 9ce5ff6d authored by Adam Rogowiec's avatar Adam Rogowiec

Remove class member default initialization.

parent 5493c90b
......@@ -113,8 +113,8 @@ namespace ngraph
std::shared_ptr<Node> clip(const std::shared_ptr<Node>& data) const;
private:
const std::size_t m_hidden_size = 0.f;
const float m_clip = 0.f;
const std::size_t m_hidden_size;
const float m_clip;
const std::vector<std::string> m_activations;
const std::vector<float> m_activation_alpha;
const std::vector<float> m_activation_beta;
......
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