Avoid strange warnings/error messages from 'make depend'.

Warning was for instance:
"../FL/Fl_Spinner.H":53:  FLTK_ABI_VERSION >= 10301^--- expecting )

Maybe a g++ bug ?


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10839 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2015-08-24 15:47:08 +00:00
parent 016fc01805
commit bb3f67ecf7

View File

@ -121,9 +121,7 @@
\see Fl::api_version()
*/
#define FL_API_VERSION ( FL_MAJOR_VERSION * 10000 + \
FL_MINOR_VERSION * 100 + \
FL_PATCH_VERSION )
#define FL_API_VERSION (FL_MAJOR_VERSION*10000 + FL_MINOR_VERSION*100 + FL_PATCH_VERSION)
/**
The FLTK ABI (Application Binary Interface) version number as an \em int.