Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / security / steghide / patches / patch-ac
blob983dda3a9b3bcafa878eed7b964f83a410654cbf
1 $NetBSD$
3 --- src/AuSampleValues.cc.orig  2006-05-11 16:02:22.000000000 +0000
4 +++ src/AuSampleValues.cc
5 @@ -21,17 +21,17 @@
6  #include "AuSampleValues.h"
7  
8  // AuMuLawSampleValue
9 -const BYTE AuMuLawSampleValue::MinValue = 0 ;
10 -const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
11 +template<> const BYTE AuMuLawSampleValue::MinValue = 0 ;
12 +template<> const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
14  // AuPCM8SampleValue
15 -const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
16 -const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
17 +template<> const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
18 +template<> const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
20  // AuPCM16SampleValue
21 -const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
22 -const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
23 +template<> const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
24 +template<> const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
26  // AuPCM32SampleValue
27 -const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
28 -const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
29 +template<> const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
30 +template<> const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;