• Tom Stellard's avatar
    ocl: Don't use 'inline' attribute on functions · 934394c5
    Tom Stellard authored
    In C99 'inline' is not a hint to the compiler to inline the function,
    it is an attribute that affects the linkage of the function.  'inline'
    functions are required to have a definition in a different compiliation
    unit, so compilers are free to delete 'inline' functions if they want to.
    
    This issue can be seen in Clang when compiling at -O0.  Clang
    will sometimes delete 'inline' functions which creates an invalid
    program.
    
    Issue 3746: http://code.opencv.org/issues/3746
    934394c5
Name
Last commit
Last update
..
androidcamera Loading commit data...
calib3d Loading commit data...
contrib Loading commit data...
core Loading commit data...
dynamicuda Loading commit data...
features2d Loading commit data...
flann Loading commit data...
gpu Loading commit data...
highgui Loading commit data...
imgproc Loading commit data...
java Loading commit data...
legacy Loading commit data...
ml Loading commit data...
nonfree Loading commit data...
objdetect Loading commit data...
ocl Loading commit data...
photo Loading commit data...
python Loading commit data...
stitching Loading commit data...
superres Loading commit data...
ts Loading commit data...
video Loading commit data...
videostab Loading commit data...
viz Loading commit data...
world Loading commit data...
CMakeLists.txt Loading commit data...
refman.rst.in Loading commit data...