> Is there a simple way to raise gcc's limit of 17 levels of templates? > I want to test Lydia's multi-res registration example, but the > libraries it uses won't compile under the current limit. Add -ftemplate-depth-nn to your CXXFLAGS, where "nn" is the depth you want. Usually -ftemplate-depth-50 works well. -Brad