summaryrefslogtreecommitdiff
blob: 92d4c6146259ce7fbaeeb01b30abd5aa837e472f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- kimagemapeditor/kimecommon.h	Tue Apr 23 23:08:15 2002
+++ kimagemapeditor/kimecommon.h	Tue Sep 17 12:56:29 2002
@@ -34,12 +34,14 @@
 		return i;
 }
 
+/* disable for gcc3 because the std. round() function gets included when using gcc3, but not gcc2
 inline int round(double d) {
 	if ( (d-((int) d)) < 0.5 )
 		return (int) d;
 	else
 		return ((int) d)+1;
 }
+*/
 
 inline int roundUp(double d)
 {