summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-14 22:05:15 +0200
committerwm4 <wm4@nowhere>2014-10-14 22:05:15 +0200
commitfe5ba6e21797bb4154cc42a6584cc2532658ec4b (patch)
treea75b938da5ea882e9a88a060408af11220684436
parent9241e1bf106f7ae5a6350fdbe602dda9aa390008 (diff)
downloadmpv-fe5ba6e21797bb4154cc42a6584cc2532658ec4b.tar.bz2
mpv-fe5ba6e21797bb4154cc42a6584cc2532658ec4b.tar.xz
client API: qthelper: remove commented code
This is already taken care of by Q_DISABLE_COPY().
-rw-r--r--libmpv/qthelper.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libmpv/qthelper.hpp b/libmpv/qthelper.hpp
index 59f1bac8c8..2c3fe00596 100644
--- a/libmpv/qthelper.hpp
+++ b/libmpv/qthelper.hpp
@@ -73,8 +73,6 @@ struct node_builder {
mpv_node *node() { return &node_; }
private:
Q_DISABLE_COPY(node_builder)
- //node_builder(node_builder const&); // disallow
- //node_builder& operator=(node_builder const&); // disallow
mpv_node node_;
mpv_node_list *create_list(mpv_node *dst, bool is_map, int num) {
dst->format = is_map ? MPV_FORMAT_NODE_MAP : MPV_FORMAT_NODE_ARRAY;