Comeau is generally considered to be among the most standards conforming compiler, but I'm not sure how to quantify it except that it support the export keyword which is something I've never used (and am likely not to). However, Comeau isn't for the faint of heart in setup and configuration (nor is the Comeau website).
As far as error messages go, errors involving templates are usually among the most difficult to decipher - here's how a few compilers handle the example code from the C++ FAQ entry about the problem (http://www.parashift.com/c++-faq-lite/templates.html#faq-35.17). It looks to me that Comeau comes out on top (though to be fair, I'm using a older version of GCC - I'm not sure how much 4.x would improve it's error messages - maybe someone could post that result). All three of these compilers seem to generate much more understandable messages than I recall from a number of years ago. For fun take a look at the errors generated by VC6 at the end of the post.
Example Code
#include <map>
#include <algorithm>
#include <cmath>
const int values[] = { 1,2,3,4,5 };
const int NVALS = sizeof values / sizeof (int);
int main()
{
using namespace std;
typedef map<int, double> valmap;
valmap m;
for (int i = 0; i < NVALS; i++)
m.insert(make_pair(values[i], pow(values[i], .5)));
valmap::iterator it = 100; // error
valmap::iterator it2(100); // error
m.insert(1,2); // error
return 0;
}
VC9 result
Setting environment for using Microsoft Visual Studio 2008 x86 tools.
Visual C/C++ 2008 (VC 9.0) Compile...
"C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\cl.exe" /Zi /EHsc -D_WIN32_WINNT=0x0500 "C:\temp\test.cpp" /link /incremental:no kernel32.lib user32.lib advapi32.lib shlwapi.lib oleaut32.lib
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.21022.08 for 80x86
Copyright (C) Microsoft Corporation. All rights reserved.
test.cpp
C:\temp\test.cpp(19) : error C2440: 'initializing' : cannot convert from 'int' to 'std::_Tree<_Traits>::iterator'
with
[
_Traits=std::_Tmap_traits<int,double,std::less<int>,std::allocator<std::pair<const int,double>>,false>
]
No constructor could take the source type, or constructor overload resolution was ambiguous
C:\temp\test.cpp(20) : error C2664: 'std::_Tree<_Traits>::iterator::iterator(const std::_Tree<_Traits>::iterator &)' : cannot convert parameter 1 from 'int' to 'const std::_Tree<_Traits>::iterator &'
with
[
_Traits=std::_Tmap_traits<int,double,std::less<int>,std::allocator<std::pair<const int,double>>,false>
]
Reason: cannot convert from 'int' to 'const std::_Tree<_Traits>::iterator'
with
[
_Traits=std::_Tmap_traits<int,double,std::less<int>,std::allocator<std::pair<const int,double>>,false>
]
No constructor could take the source type, or constructor overload resolution was ambiguous
GCC 3.4.5 result
GCC/MinGW C/C++ Compile...
GCC Version 3.4.5
"C:\MinGW\bin\g++" -Wall -IC:\DevTrees\includes -IC:\DevTrees\Boost\boost_1_34_1 -Ic:\MinGW\include -Ic:\MinGW\include\c++\3.4.5 -D_WIN32_WINNT=0x0500 "C:\temp\test.cpp" -lkernel32 -luser32 -ladvapi32 -lshlwapi -loleaut32 -o "test".exe
C:\temp\test.cpp: In function `int main()':
C:\temp\test.cpp:19: error: invalid conversion from `int' to `std::_Rb_tree_node<std::pair<const int, double> >*'
C:\temp\test.cpp:19: error: initializing argument 1 of `std::_Rb_tree_iterator<_Tp>::_Rb_tree_iterator(std::_Rb_tree_node<_Tp>*) [with _Tp = std::pair<const int, double>]'
C:\temp\test.cpp:20: error: invalid conversion from `int' to `std::_Rb_tree_node<std::pair<const int, double> >*'
C:\temp\test.cpp:20: error: initializing argument 1 of `std::_Rb_tree_iterator<_Tp>::_Rb_tree_iterator(std::_Rb_tree_node<_Tp>*) [with _Tp = std::pair<const int, double>]'
c:/MinGW/include/c++/3.4.5/bits/stl_tree.h: In member function `void std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::insert_unique(_II, _II) [with _InputIterator = int, _Key = int, _Val = std::pair<const int, double>, _KeyOfValue = std::_Select1st<std::pair<const int, double> >, _Compare = std::less<int>, _Alloc = std::allocator<std::pair<const int, double> >]':
c:/MinGW/include/c++/3.4.5/bits/stl_map.h:397: instantiated from `void std::map<_Key, _Tp, _Compare, _Alloc>::insert(_InputIterator, _InputIterator) [with _InputIterator = int, _Key = int, _Tp = double, _Compare = std::less<int>, _Alloc = std::allocator<std::pair<const int, double> >]'
C:\temp\test.cpp:21: instantiated from here
c:/MinGW/include/c++/3.4.5/bits/stl_tree.h:996: error: invalid type argument of `unary *'
Comeau result
compile...
como -c --c++ -IC:\DevTrees\includes -IC:\DevTrees\Boost\boost_1_34_1 "C:\temp\test.cpp"
Comeau C/C++ 4.3.10.1 (Jun 1 2008 09:39:56) for MS_WINDOWS_x86_Beta2
Copyright 1988-2008 Comeau Computing. All rights reserved.
MODE:non-strict warnings microsoft C++ noC++0x_extensions
"C:\temp\test.cpp", line 19: error: no suitable constructor exists to convert
from "int" to "std::_Rb_tree_iterator<std::pair<const int, double>,
std::pair<const int, double> &, std::pair<const int, double> *>"
valmap::iterator it = 100; // error
^
"C:\temp\test.cpp", line 20: error: no instance of constructor
"std::_Rb_tree_iterator<_Value, _Ref, _Ptr>::_Rb_tree_iterator [with
_Value=std::pair<const int, double>, _Ref=std::pair<const int,
double> &, _Ptr=std::pair<const int, double> *]" matches the
argument list
argument types are: (int)
valmap::iterator it2(100); // error
^
2 errors detected in the compilation of "C:\temp\test.cpp".
VC6 result
Setting environment for using Microsoft Visual C++ tools.
Visual C/C++ 6 (VC98) Compile...
"C:\Program Files\Microsoft Visual Studio\VC98\Bin\cl" /GX /Zi -D_WIN32_WINNT=0x0500 "C:\temp\test.cpp" /link /INCREMENTAL:NO kernel32.lib user32.lib advapi32.lib shlwapi.lib oleaut32.lib
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
test.cpp
C:\temp\test.cpp(19) : error C2440: 'initializing' : cannot convert from 'const int' to 'class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator'
No constructor could take the source type, or constructor overload resolution was ambiguous
C:\temp\test.cpp(20) : error C2664: '__thiscall std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator::std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator(struct std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::_Node *)' : cannot convert parameter 1 from 'const int' to 'struct std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::_Node *'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
C:\temp\test.cpp(21) : error C2664: 'class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator __thiscall std::map<int,double,struct std::less<int>,class std::allocator<double> >::insert(class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator,const struct std::pair<int const ,double> &)' : cannot convert parameter 1 from 'const int' to 'class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator'
No constructor could take the source type, or constructor overload resolution was ambiguous