Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 363729
Collapse All | Expand All

(-)octave-3.4.0.old/liboctave/oct-alloc.h (+2 lines)
Lines 23-28 Link Here
23
#if !defined (octave_oct_alloc_h)
23
#if !defined (octave_oct_alloc_h)
24
#define octave_oct_alloc_h 1
24
#define octave_oct_alloc_h 1
25
25
26
#include <cstddef>
27
26
class
28
class
27
OCTAVE_API
29
OCTAVE_API
28
octave_allocator
30
octave_allocator
(-)octave-3.4.0.old/src/pr-output.cc (-9 lines)
Lines 3023-3037 Link Here
3023
  return x < 0 ? -x : x;
3023
  return x < 0 ? -x : x;
3024
}
3024
}
3025
3025
3026
#define INSTANTIATE_ABS(T) \
3027
  template /* static */ inline T abs (T)
3028
3029
INSTANTIATE_ABS(signed char);
3030
INSTANTIATE_ABS(short);
3031
INSTANTIATE_ABS(int);
3032
INSTANTIATE_ABS(long);
3033
INSTANTIATE_ABS(long long);
3034
3035
#define SPECIALIZE_UABS(T) \
3026
#define SPECIALIZE_UABS(T) \
3036
  template <> \
3027
  template <> \
3037
  /* static */ inline unsigned T \
3028
  /* static */ inline unsigned T \

Return to bug 363729