Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CMake
CMake
Commits
f510aafb
Commit
f510aafb
authored
Feb 14, 2019
by
Brad King
1
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'upstream-KWSys' into update-kwsys
* upstream-KWSys: KWSys 2019-02-14 (e270ce9f)
parents
e3353a01
a930de85
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
12 deletions
+4
-12
Source/kwsys/Glob.hxx.in
Source/kwsys/Glob.hxx.in
+3
-11
Source/kwsys/hashtable.hxx.in
Source/kwsys/hashtable.hxx.in
+1
-1
No files found.
Source/kwsys/Glob.hxx.in
View file @
f510aafb
...
...
@@ -41,17 +41,9 @@ public:
, content(c)
{
}
Message(const Message& msg)
: type(msg.type)
, content(msg.content)
{
}
Message& operator=(Message const& msg)
{
this->type = msg.type;
this->content = msg.content;
return *this;
}
~Message() = default;
Message(const Message& msg) = default;
Message& operator=(Message const& msg) = default;
};
typedef std::vector<Message> GlobMessages;
...
...
Source/kwsys/hashtable.hxx.in
View file @
f510aafb
...
...
@@ -73,7 +73,7 @@ struct _Hashtable_node
void public_method_to_quiet_warning_about_all_methods_private();
private:
void operator=(_Hashtable_node<_Val> const&)
; // poison node assignment
void operator=(_Hashtable_node<_Val> const&)
= delete;
};
template <class _Val, class _Key, class _HashFcn, class _ExtractKey,
...
...
Brad King
@brad.king
mentioned in commit
3c9c91a3
·
Feb 15, 2019
mentioned in commit
3c9c91a3
mentioned in commit 3c9c91a360104b97aa6ad27934ff7603c862a2f7
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment