
10 Mar
2004
10 Mar
'04
1:06 p.m.
"David Abrahams" <dave@boost-consulting.com> ???? news:un06ox4wu.fsf@boost-consulting.com...
You're missing something. Your declaration of f is equivalent to:
template <int N> void f(int* a);
try:
template <int N> void f(int a(&)[N]) ^^^
It seems that this line should be void f(int (&a)[N]) Thank you very much. BTW: The original demo_fast_binary_archive.cpp seems missing this. May Ramey fix this.
instead.