Move static member definition to abg-viz-dot.cc file

* include/libabigail/abg-viz-dot.h: Move definition of
	node_base::_M_count_total to ...
	* src/abg-viz-dot.cc: ... here.
This commit is contained in:
Dodji Seketeli 2013-07-19 08:38:11 +02:00
parent f9d66af03c
commit 04873cb485
2 changed files with 3 additions and 4 deletions

View File

@ -48,10 +48,6 @@ struct node_base
{ }
};
// Define.
units_type node_base::_M_count_total;
/// Useful constants.
extern const style parent_sty;
extern const style child_sty;

View File

@ -32,6 +32,9 @@ using std::ostringstream;
const style parent_sty = { color::white, color::black, "" };
const style child_sty = { color::white, color::gray75, "" };
// Define.
units_type node_base::_M_count_total;
void
dot::write()
{