blob: c1eee407527316036dd297621c47eedf7b42613c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
--- matrix/matrix_char.cpp.orig 2008-02-13 22:21:07.000000000 +0100
+++ matrix/matrix_char.cpp 2008-02-13 22:21:42.000000000 +0100
@@ -27,7 +27,7 @@
namespace PLib {
- Matrix<char>&
+ template<> Matrix<char>&
Matrix<char>::operator*=(double a)
{
char *p1 ;
@@ -40,7 +40,7 @@
return *this ;
}
- Matrix<char>&
+ template<> Matrix<char>&
Matrix<char>::operator+=(double a)
{
char *p1 ;
@@ -51,7 +51,7 @@
return *this ;
}
- Matrix<char>&
+ template<> Matrix<char>&
Matrix<char>::operator-=(double a)
{
char *p1 ;
@@ -62,7 +62,7 @@
return *this ;
}
- Matrix<char>&
+ template<> Matrix<char>&
Matrix<char>::operator/=(double a)
{
char *p1 ;
|