author | leseb <leseb> | 2002-07-04 12:22:09 (UTC) |
---|---|---|
committer | leseb <leseb> | 2002-07-04 12:22:09 (UTC) |
commit | 61b99edb481444aea41fa47853a5d60c78bfaa3c (patch) (unidiff) | |
tree | ccfc78298de44fa6040313b054c54c5ab8c6ec83 | |
parent | 3035c46ce448317f786d974094f78ce43e594a57 (diff) | |
download | opie-61b99edb481444aea41fa47853a5d60c78bfaa3c.zip opie-61b99edb481444aea41fa47853a5d60c78bfaa3c.tar.gz opie-61b99edb481444aea41fa47853a5d60c78bfaa3c.tar.bz2 |
Fix for compiling on x86 (Red Hat)
-rw-r--r-- | noncore/unsupported/qpdf/fixed.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/unsupported/qpdf/fixed.h b/noncore/unsupported/qpdf/fixed.h index ec0e696..44aaa5e 100644 --- a/noncore/unsupported/qpdf/fixed.h +++ b/noncore/unsupported/qpdf/fixed.h | |||
@@ -1,19 +1,20 @@ | |||
1 | #ifndef __FIXED_H__ | 1 | #ifndef __FIXED_H__ |
2 | #define __FIXED_H__ | 2 | #define __FIXED_H__ |
3 | 3 | ||
4 | #include <stdlib.h> | ||
4 | #include <iostream> | 5 | #include <iostream> |
5 | 6 | ||
6 | #define _GCC_TEMPLATE_BUG_ 1 | 7 | #define _GCC_TEMPLATE_BUG_ 1 |
7 | 8 | ||
8 | template <unsigned int SH> class fixed { | 9 | template <unsigned int SH> class fixed { |
9 | public: | 10 | public: |
10 | inline fixed ( int i = 0 ) : m_f ( i2f( i ) ) { } | 11 | inline fixed ( int i = 0 ) : m_f ( i2f( i ) ) { } |
11 | inline fixed ( double d ) : m_f ( d2f( d )) { } | 12 | inline fixed ( double d ) : m_f ( d2f( d )) { } |
12 | inline fixed ( const fixed &f ) : m_f ( f. m_f ) { } | 13 | inline fixed ( const fixed &f ) : m_f ( f. m_f ) { } |
13 | 14 | ||
14 | inline operator bool ( ) const { return m_f != 0; } | 15 | inline operator bool ( ) const { return m_f != 0; } |
15 | inline operator double ( ) const { return f2d( m_f ); } | 16 | inline operator double ( ) const { return f2d( m_f ); } |
16 | inline operator float ( ) const { return (float) f2d( m_f ); } | 17 | inline operator float ( ) const { return (float) f2d( m_f ); } |
17 | inline operator int ( ) const { return (int) f2i( m_f ); } | 18 | inline operator int ( ) const { return (int) f2i( m_f ); } |
18 | 19 | ||
19 | inline fixed &operator = ( const fixed &f ) { m_f = f. m_f; return *this; } | 20 | inline fixed &operator = ( const fixed &f ) { m_f = f. m_f; return *this; } |