diff options
author | Brad King <brad.king@kitware.com> | 2015-05-05 13:12:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-05-05 13:12:21 (GMT) |
commit | f6749f727451ef3e35c20e80e712f0bda38348f9 (patch) | |
tree | 9b477e3599d7615c9c27dc43959e099a90e98f3c /Source/kwsys/Glob.hxx.in | |
parent | 9e3181a1128e7d4f830f56da397f0aaa04cb558d (diff) | |
parent | 0c34ac2f0159645f6a2cd0f57a45ffae36b4352d (diff) | |
download | CMake-f6749f727451ef3e35c20e80e712f0bda38348f9.zip CMake-f6749f727451ef3e35c20e80e712f0bda38348f9.tar.gz CMake-f6749f727451ef3e35c20e80e712f0bda38348f9.tar.bz2 |
Merge branch 'upstream-kwsys' into update-kwsys
Diffstat (limited to 'Source/kwsys/Glob.hxx.in')
-rw-r--r-- | Source/kwsys/Glob.hxx.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/kwsys/Glob.hxx.in b/Source/kwsys/Glob.hxx.in index 39b7ce7..5239ccd 100644 --- a/Source/kwsys/Glob.hxx.in +++ b/Source/kwsys/Glob.hxx.in @@ -59,6 +59,12 @@ public: type(msg.type), content(msg.content) {} + Message& operator=(Message const& msg) + { + this->type = msg.type; + this->content = msg.content; + return *this; + } }; typedef kwsys_stl::vector<Message> GlobMessages; |