Skip to content
Snippets Groups Projects
Commit 3b37947a authored by w-klijn's avatar w-klijn Committed by GitHub
Browse files

Merge pull request #73 from halfflat/master

Bugfix: incorrect specialization
parents 21f1e235 942380ea
No related branches found
No related tags found
No related merge requests found
......@@ -11,10 +11,12 @@
// Let TCLAP understand value arguments that are of an optional type.
template <typename V>
struct TCLAP::ArgTraits<nest::mc::util::optional<V>> {
using ValueCategory = ValueLike;
};
namespace TCLAP {
template <typename V>
struct ArgTraits<nest::mc::util::optional<V>> {
using ValueCategory = ValueLike;
};
}
namespace nest {
namespace mc {
......
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