spec10.C: Set exit value to zero on success.
* g++.dg/template/spec10.C: Set exit value to zero on success. Fix indentation. From-SVN: r72195
This commit is contained in:
parent
f6d9224fe3
commit
90af80420f
@ -1,3 +1,8 @@
|
||||
2003-10-06 Bob Wilson <bob.wilson@acm.org>
|
||||
|
||||
* g++.dg/template/spec10.C: Set exit value to zero on success. Fix
|
||||
indentation.
|
||||
|
||||
2003-10-06 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/10147
|
||||
|
@ -9,19 +9,19 @@ template<int b>
|
||||
class o
|
||||
{
|
||||
public:
|
||||
template<typename T> static void do_add(T* p, T v);
|
||||
template<typename T> static void do_add(T* p, T v);
|
||||
};
|
||||
|
||||
template<>
|
||||
template<typename T>
|
||||
inline void o<32>::do_add(T* p, T v)
|
||||
{
|
||||
*p += v;
|
||||
*p += v;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int a = 0x1000;
|
||||
o<32>().do_add<int>(&a, 0x2000);
|
||||
return a;
|
||||
int a = 0x1000;
|
||||
o<32>().do_add<int>(&a, 0x2000);
|
||||
return (a != 0x3000);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user