On Friday, 9 May 2014 at 21:42:14 UTC, Vlad Levenfeld wrote:
Is this still the case if the method is const or pure?

Const methods still require synchronization, because other threads may change some data, needed by const method while method is executed, and then you may get wrong results.

Consider:

class Point
{
public:
    float x;
    float y;


}

Reply via email to