Skip to content

Commit

Permalink
fixup: fix KW error "Non-void function does not return value"
Browse files Browse the repository at this point in the history
  • Loading branch information
ankalinin committed Nov 17, 2016
1 parent dcddf40 commit 19985aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mkldnn.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ template <typename T, typename traits=handle_traits<T>> class handle {
private:
std::shared_ptr<typename std::remove_pointer<T>::type> _data;
handle(const handle &&) {}
handle &operator=(const handle &&other) {}
handle &operator=(const handle &&other) = delete;
protected:
/// Constructs a C handle wrapper.
/// @param t The C handle to wrap.
Expand Down

0 comments on commit 19985aa

Please sign in to comment.