473,386 Members | 1,969 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Can't figure out syntax error with templates/member function pointers

Greetings,

I'm attempting to write my first *real* template function that also deals with
a map of strings to member function pointers that is making the syntax a little
tricky to get right.

The function in question:

36: template <typename Container,
37: typename OutputIterator,
38: typename UnaryOp>
39: void
40: transform_fields_into_matches(
41: typename Container::const_iterator first,
42: typename Container::const_iterator last,
43: OutputIterator result,
44: const fields_type& fields,
45: const std::map<std::string,
46: const std::string& (Container::value_type::*)(void) const > & fm,
47: UnaryOp op)
48: {
49: typedef const std::string& (Container::value_type::*mfp)(void) const;
50:
51: util::Regex criteria;
52: const int cflags(options::eregex() ?
53: util::Regex::extended|util::Regex::icase : util::Regex::icase);
54:
55: for (; first != last ; ++first)
56: {
57: fields_type::const_iterator f;
58: for (f = fields.begin() ; f != fields.end() ; ++f)
59: {
60: /* check if field is valid */
61: std::map<std::string, mfp>::const_iterator i = fm.find(f->first);
62: if (i == fm.end())
63: throw InvalidField(f->first);
64:
65: /* it's valid, so compile regex */
66: criteria.assign(f->second, cflags);
67:
68: /* compare criteria against the return value of the
69: * Container::value_type member function mapped to
70: * this field. */
71: const typename Container::value_type& v(*first);
72: if (criteria != (v.*(i->second))())
73: break;
74:
75: /* we're on the last field, meaning all fields that came before
76: * it also matched, so save it finally. */
77: if ((f+1) == fields.end())
78: *result++ = op(*first);
79: }
80: }
81: }

For some reason I can't figure out, the compile keeps bailing on line 61 with:
"error: expected ';' before i".

I'm thinking maybe it has something to do with the lack of 'typename' when
using Container::value_type in the function pointer, but adding that seems to
cause another problem (maybe I'm not putting it in the right place?)

using:
typedef const std::string& (typename Container::value_type::*mfp)(void) const;

causes:
error: expected unqualified-id before ‘typename’
error: expected `)' before ‘typename’
error: expected initializer before ‘typename’

Any pointers in the right direction?

Much appreciated,
Aaron
Oct 1 '05 #1
4 2035
Aaron Walker wrote:
Greetings,

I'm attempting to write my first *real* template function that also deals with
a map of strings to member function pointers that is making the syntax a little
tricky to get right.

The function in question:

36: template <typename Container,
37: typename OutputIterator,
38: typename UnaryOp>
39: void
40: transform_fields_into_matches(
41: typename Container::const_iterator first,
42: typename Container::const_iterator last,
43: OutputIterator result,
44: const fields_type& fields,
45: const std::map<std::string,
46: const std::string& (Container::value_type::*)(void) const > & fm,
47: UnaryOp op)
48: {
[snip]

Any pointers in the right direction?


well I'm not sure of your actual question because that is wildly complex
syntax you have. But I can see that you are heading in the wrong direction.

Look at this simple code

#include <vector>

template <typename Container>
void f(typename Container::iterator i)
{
typename Container::value_type v;
}

int main()
{
std::vector<int> i;
f(i.begin());
}

It fails to compile. The reason is that the compiler cannot work out
what Container is. The rules of C++ prevent the compiler from deducing
the template argument when the function argument type is of the form
typename T::m.

If you ever got your code to compile you would face this issue and there
isn't a solution (other than specifying the template arguments explcitily).

To pass iterators to a template function you should do the following and
use iterator_traits if you want the value type.

#include <vector>

template <typename I>
void f(I i)
{
std::iterator_traits<I>::value_type v;
}

int main()
{
std::vector<int> i;
f(i.begin());
}

john
Oct 1 '05 #2
Aaron Walker wrote:
Greetings,

I'm attempting to write my first *real* template function that also
deals with
a map of strings to member function pointers that is making the
syntax a little tricky to get right.

The function in question:
[...]
61: std::map<std::string, mfp>::const_iterator i =
fm.find(f->first);
62: if (i == fm.end())
Please don't post line numbers. Just add a comment to the line you
want to mark.
For some reason I can't figure out, the compile keeps bailing on line
61 with: "error: expected ';' before i".
Add 'typename' at the beginning:

typename std::map<...>::const_iterator i = ...
I'm thinking maybe it has something to do with the lack of 'typename'
when
using Container::value_type in the function pointer, but adding that
seems to cause another problem (maybe I'm not putting it in the right
place?)


Probably.

V
Oct 1 '05 #3
John Harrison wrote:
Aaron Walker wrote:
Greetings,

I'm attempting to write my first *real* template function that also
deals with
a map of strings to member function pointers that is making the syntax
a little
tricky to get right.

The function in question:

36: template <typename Container,
37: typename OutputIterator,
38: typename UnaryOp>
39: void
40: transform_fields_into_matches(
41: typename Container::const_iterator first,
42: typename Container::const_iterator last,
43: OutputIterator result,
44: const fields_type& fields,
45: const std::map<std::string,
46: const std::string& (Container::value_type::*)(void)
const > & fm,
47: UnaryOp op)
48: {

[snip]

Any pointers in the right direction?


well I'm not sure of your actual question because that is wildly complex
syntax you have. But I can see that you are heading in the wrong direction.


<snip>

My question was why would this:

49: typedef const std::string& (Container::value_type::*mfp)(void) const;
....
61: std::map<std::string, mfp>::const_iterator i = fm.find(f->first);

produce this compile failure:

61: "error: expected ';' before i".


It fails to compile. The reason is that the compiler cannot work out
what Container is. The rules of C++ prevent the compiler from deducing
the template argument when the function argument type is of the form
typename T::m.

If you ever got your code to compile you would face this issue and there
isn't a solution (other than specifying the template arguments explcitily).

To pass iterators to a template function you should do the following and
use iterator_traits if you want the value type.


<snip>

I was wondering if it'd be able to deduce the container type, but hadn't gotten
that far due to the syntax error. I didn't realize I could get the value_type
from iterator_traits.

Thanks for helping with what would probably have been my next problem :)

Aaron
Oct 1 '05 #4
Victor Bazarov wrote:

Please don't post line numbers. Just add a comment to the line you
want to mark.

Ah, ok apologies. I figured it'd make it easier on whoever was trying to help.
Will keep in mind next time.
For some reason I can't figure out, the compile keeps bailing on line
61 with: "error: expected ';' before i".

Add 'typename' at the beginning:

typename std::map<...>::const_iterator i = ...


Yep, that does it.

Thanks,
Aaron
Oct 1 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: William Payne | last post by:
Hello, consider the following two classes (parent and child): #ifndef SINGLETON_HPP #define SINGLETON_HPP #include <cstddef> /* NULL */ template <typename T> class Singleton {
3
by: Patrick Guio | last post by:
Hi, I have trouble to compile the following piece of code with g++3.4 but not with earlier version // Foo.h template<typename T> class Foo { public:
22
by: Ian | last post by:
The title says it all. I can see the case where a function is to be called directly from C, the name mangling will stuff this up. But I can't see a reason why a template function can't be...
3
by: infinity | last post by:
Hi all, Is constructor a special member function? But I don't think it is either a member function or even a special member function although it has the syntax of a function. I think it confused...
3
by: Ernesto Bascón | last post by:
Hi everybody: I have two questions: 1. I'm using opaque pointers in my classes to hide their data structures; there is a way to use opaque pointers in template classes; since the...
6
by: JDT | last post by:
Hi, Can we pass a member function in a class as a callback function? Someone instucted me that I can only use a static functon or a global function as a callback. Your help is appreciated. JD
6
by: Kinbote | last post by:
Hi, I'm trying to make a function that opens a file, reads it in line by line, puts each line into an malloc'd array, and returns the array. I suspect I'm going about it in an atypical fashion, as...
2
by: Eric Lilja | last post by:
As the topic says, I wanted to make a re-usable singleton class that could create pointers to objects with non-trivial constructors. I came up with this: #ifndef SINGLETON_HPP #define...
17
by: Juha Nieminen | last post by:
As we know, the keyword "inline" is a bit misleading because its meaning has changed in practice. In most modern compilers it has completely lost its meaning of "a hint for the compiler to inline...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.