I have a struct that looks something like:
struct foo_t
{
template <std::size_t x, std::size_t y>
std::size_t operator()() const
{ return /*something dealing with x and y*/; }
};
The definition seems to compile fine, but how do I call it? I can't seem to get anything past the compiler:
foo_t foo;
foo<3, 3>(); // ERROR: Compiler seems to think I'm asking for "foo < 3 ..."
operatoroverloading usually helps with the syntax, but if you need to provide the template arguments it is going to make your code uglier. – David Rodríguez - dribeas Jun 19 '12 at 16:15ret_type operator()()(or the second pair of parens can declare some argument types). Under the circumstances, I'd wonder why you're doing this at all though... – Jerry Coffin Jun 19 '12 at 16:16