mirror of
https://github.com/MariaDB/server.git
synced 2026-04-30 12:15:32 +02:00
clean up comments
This commit is contained in:
parent
e1d5f62041
commit
cbda6835ed
1 changed files with 2 additions and 2 deletions
|
|
@ -456,7 +456,7 @@ double Item_func_pow::val()
|
|||
|
||||
double Item_func_acos::val()
|
||||
{
|
||||
// this 'volatile' was added as a fix for BUG #2338 to calm optimizer down
|
||||
// the volatile's for BUG #2338 to calm optimizer down (because of gcc's bug)
|
||||
volatile double value=args[0]->val();
|
||||
if ((null_value=(args[0]->null_value || (value < -1.0 || value > 1.0))))
|
||||
return 0.0;
|
||||
|
|
@ -465,7 +465,7 @@ double Item_func_acos::val()
|
|||
|
||||
double Item_func_asin::val()
|
||||
{
|
||||
// this 'volatile' was added as a fix for BUG #2338 to calm optimizer down
|
||||
// the volatile's for BUG #2338 to calm optimizer down (because of gcc's bug)
|
||||
volatile double value=args[0]->val();
|
||||
if ((null_value=(args[0]->null_value || (value < -1.0 || value > 1.0))))
|
||||
return 0.0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue