Commit 52bf43df authored by Milo Yip's avatar Milo Yip

Merge pull request #202 from pah/cleanup/document-non-copyable

GenericDocument: explicitly prohibit copying
parents 39f5eeb7 3220438a
......@@ -1862,6 +1862,8 @@ private:
}
private:
//! Prohibit copying
GenericDocument(const GenericDocument&);
//! Prohibit assignment
GenericDocument& operator=(const GenericDocument&);
......
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