Image

Imagevalera wrote in Imagecpp

inline

What are the pros & cons of using inline functions in classes? What happens what you do?

With global inline functions, the function is inserted everywhere, where it's used, making the file size grow & slightly speeding upp the program, correct?
How is this different from class inline functions?