You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a testsuite of CGAL where we call functions from OpenGR we get a warning from the compiler concerning the function POW(). It is a false alert, but it might be an indication that the compiler does not recognize that this can be computed at compile time.
You use it here. If I was you I used a left shift instead. I would also use a left shift for the occurences of std:pow(2,..).
The text was updated successfully, but these errors were encountered:
In a testsuite of CGAL where we call functions from OpenGR we get a warning from the compiler concerning the function
POW()
. It is a false alert, but it might be an indication that the compiler does not recognize that this can be computed at compile time.You use it here. If I was you I used a left shift instead. I would also use a left shift for the occurences of
std:pow(2,..)
.The text was updated successfully, but these errors were encountered: