Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
37b0809c
Commit
37b0809c
authored
Oct 13, 2012
by
Alexandre Duret-Lutz
Browse files
* src/misc/formater.hh: Add virtual destructors to please g++-4.0.
parent
85260341
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/misc/formater.hh
View file @
37b0809c
...
...
@@ -29,9 +29,10 @@ namespace spot
class
printable
{
public:
~
printable
()
virtual
~
printable
()
{
}
virtual
void
print
(
std
::
ostream
&
,
const
char
*
)
const
=
0
;
};
...
...
@@ -112,6 +113,10 @@ namespace spot
call_
[
'%'
]
=
call_
[
0
]
=
&
percent
;
}
virtual
~
formater
()
{
}
/// Collect the %-sequences occurring in \a fmt.
void
prime
(
const
char
*
fmt
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment