Fixed for VC++ 4.2 (no template function specifiers at the call site)

This commit is contained in:
scc%netscape.com 1998-11-13 12:33:58 +00:00
Родитель 0611dac036
Коммит 6138f32e56
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -327,7 +327,7 @@ main()
cout << endl << "### Test 16: what if I don't want to |AddRef| when I assign in?" << endl;
COM_auto_ptr<IFoo> foo2p;
foo2p = dont_AddRef<IFoo>(raw_foo2p);
foo2p = dont_AddRef(raw_foo2p);
}