gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Fix gcc-4.3 compilation errors and warnings
0 6 0
default
6 files changed with 11 insertions and 10 deletions:
↑ Collapse diff ↑
Show white space 2 line context
... ...
@@ -34,3 +34,3 @@
34 34
public:
35
  typedef Point<double> Point;
35
  typedef lemon::dim2::Point<double> Point;
36 36
protected:
Show white space 2 line context
... ...
@@ -152,4 +152,4 @@
152 152

	
153
    typedef const Value ConstReturnValue;
154
    typedef const Value ReturnValue;
153
    typedef Value ConstReturnValue;
154
    typedef Value ReturnValue;
155 155
  };
... ...
@@ -180,4 +180,4 @@
180 180

	
181
    typedef const Value ConstReturnValue;
182
    typedef const Value ReturnValue;
181
    typedef Value ConstReturnValue;
182
    typedef Value ReturnValue;
183 183
  };
Show white space 2 line context
... ...
@@ -25,2 +25,3 @@
25 25

	
26
#include <limits>
26 27
#include <lemon/list_graph.h>
Show white space 2 line context
... ...
@@ -1017,3 +1017,3 @@
1017 1017
	if((!_undirected||g.source(e)<g.target(e))&&_arcWidths[e]>0
1018
	   &&g.source(e)!=g.target(e))
1018
	   &&g.source(e)!=g.target(e)) {
1019 1019
	  if(_drawArrows) {
... ...
@@ -1046,2 +1046,3 @@
1046 1046
		  << _arcWidths[e]*_arcWidthScale << " l\n";
1047
	}
1047 1048
      os << "grestore\n";
Show white space 2 line context
... ...
@@ -117,3 +117,3 @@
117 117
	  n!=-1 && nodes[n].first_in == -1; 
118
	  n = nodes[n].next);
118
	  n = nodes[n].next) {}
119 119
      arc.id = (n == -1) ? -1 : nodes[n].first_in;
... ...
@@ -128,3 +128,3 @@
128 128
	  n!=-1 && nodes[n].first_in == -1; 
129
	  n = nodes[n].next);
129
	    n = nodes[n].next) {}
130 130
	arc.id = (n == -1) ? -1 : nodes[n].first_in;
Show white space 2 line context
... ...
@@ -26,2 +26,3 @@
26 26
#include <iostream>
27
#include <stdlib.h>
27 28

	
... ...
@@ -38,4 +39,2 @@
38 39
///\verbatim file_name.cc:123: error: This is obviously false. \endverbatim
39
///
40
///\todo It should be in \c assert.h
41 40
#define check(rc, msg) \
0 comments (0 inline)