Commit 339915ba authored by Tsukasa OMOTO's avatar Tsukasa OMOTO Committed by Guolin Ke
Browse files

Shut up warning (#534)

warning: type qualifiers ignored on function return type
[-Wignored-qualifiers]
parent 2dbf1a2e
...@@ -91,7 +91,7 @@ public: ...@@ -91,7 +91,7 @@ public:
} }
/*! \brief Pointer of score */ /*! \brief Pointer of score */
inline const double* score() const { return score_.data(); } inline const double* score() const { return score_.data(); }
inline const data_size_t num_data() const { return num_data_; } inline data_size_t num_data() const { return num_data_; }
/*! \brief Disable copy */ /*! \brief Disable copy */
ScoreUpdater& operator=(const ScoreUpdater&) = delete; ScoreUpdater& operator=(const ScoreUpdater&) = delete;
......
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