Commit 236e90e3 authored by Davis King's avatar Davis King

Fixed compiler error with the cmd_line_parser and global swap() introduced

in the last change.
parent e9e0b65d
......@@ -63,6 +63,14 @@ namespace dlib
typedef cmd_line_parser check_1a_c;
};
template <
typename charT
>
inline void swap (
cmd_line_parser<charT>& a,
cmd_line_parser<charT>& b
) { a.swap(b); }
// ----------------------------------------------------------------------------------------
typedef cmd_line_parser<char> command_line_parser;
......
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