aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.c++/templates.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.c++/templates.cc')
-rw-r--r--gdb/testsuite/gdb.c++/templates.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.c++/templates.cc b/gdb/testsuite/gdb.c++/templates.cc
index 470024c..e1d6810 100644
--- a/gdb/testsuite/gdb.c++/templates.cc
+++ b/gdb/testsuite/gdb.c++/templates.cc
@@ -516,7 +516,7 @@ public:
int (*manage[5])(double,
void *(*malloc)(unsigned size),
void (*free)(void *pointer));
- int (*device[5])(int open(const char *, unsigned mode, unsigned perms, int extra = 0),
+ int (*device[5])(int open(const char *, unsigned mode, unsigned perms, int extra),
int *(*read)(int fd, void *place, unsigned size),
int *(*write)(int fd, void *place, unsigned size),
void (*close)(int fd));
@@ -716,7 +716,7 @@ int main()
Foo<int> fint;
Foo<char> fchar;
- Foo<volatile char *> fvpchar;
+ Foo<volatile char *> fvpchar = {0, 0};
Bar<int, 33> bint;
Bar<int, (4 > 3)> bint2;