diff options
author | unknown <kaa@polly.local> | 2007-05-30 22:47:52 +0400 |
---|---|---|
committer | unknown <kaa@polly.local> | 2007-05-30 22:47:52 +0400 |
commit | 9dc7a7b8344335b03a2162abcc7c1a61fa21fc1d (patch) | |
tree | 24fcd7cd9e1727a3b915da9f28027b59677ad04d /include | |
parent | 07c7cf12881759665baf90ba4f3f6c499b9fc780 (diff) | |
download | mariadb-git-9dc7a7b8344335b03a2162abcc7c1a61fa21fc1d.tar.gz |
Got rid of log_01[], because we don't really need it. Division and log_10[] can always be used instead, which is also a more precise way.
This is for bug #28121.
include/m_string.h:
Got rid of log_01[], because we don't really need it.
sql/item_cmpfunc.cc:
Got rid of log_01[], because we don't really need it.
strings/strtod.c:
Got rid of log_01[], because we don't really need it.
Diffstat (limited to 'include')
-rw-r--r-- | include/m_string.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/m_string.h b/include/m_string.h index f28cda529f5..981111b8718 100644 --- a/include/m_string.h +++ b/include/m_string.h @@ -107,7 +107,6 @@ extern char NEAR _dig_vec_lower[]; /* Defined in strtod.c */ extern const double log_10[309]; -extern const double log_01[309]; #ifdef BAD_STRING_COMPILER #define strmov(A,B) (memccpy(A,B,0,INT_MAX)-1) |