diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-01 18:53:46 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-01 18:53:46 +0000 |
| commit | 28295ae0e903ffbce95424695e03744f78cdbd26 (patch) | |
| tree | ed4e99df69d655f6abc37622e2d3d18538e33ae6 /FL/Fl_Pixmap.H | |
| parent | bf42e5023c0320107e558777b067e862deb6ffab (diff) | |
Fixes for old C++ compilers (e.g. IRIX 5.3)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1674 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Pixmap.H')
| -rw-r--r-- | FL/Fl_Pixmap.H | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/FL/Fl_Pixmap.H b/FL/Fl_Pixmap.H index 31d99c673..78c8c389c 100644 --- a/FL/Fl_Pixmap.H +++ b/FL/Fl_Pixmap.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Pixmap.H,v 1.6.2.8.2.1 2001/08/05 23:58:54 easysw Exp $" +// "$Id: Fl_Pixmap.H,v 1.6.2.8.2.2 2001/11/01 18:53:46 easysw Exp $" // // Pixmap header file for the Fast Light Tool Kit (FLTK). // @@ -30,6 +30,11 @@ class Fl_Widget; struct Fl_Menu_Item; +// Older C++ compilers don't support the explicit keyword... :( +# if defined(__sgi) && !defined(_COMPILER_VERSION) +# define explicit +# endif // __sgi && !_COMPILER_VERSION + class FL_EXPORT Fl_Pixmap : public Fl_Image { void measure(); @@ -53,5 +58,5 @@ class FL_EXPORT Fl_Pixmap : public Fl_Image { #endif // -// End of "$Id: Fl_Pixmap.H,v 1.6.2.8.2.1 2001/08/05 23:58:54 easysw Exp $". +// End of "$Id: Fl_Pixmap.H,v 1.6.2.8.2.2 2001/11/01 18:53:46 easysw Exp $". // |
