Cleanup: replace members m_ prefix by _ suffix in Compositor
To convert old code to the current convention and use a single code style.
This commit is contained in:
@@ -39,11 +39,11 @@ class CPUDevice : public Device {
|
||||
|
||||
int thread_id()
|
||||
{
|
||||
return m_thread_id;
|
||||
return thread_id_;
|
||||
}
|
||||
|
||||
protected:
|
||||
int m_thread_id;
|
||||
int thread_id_;
|
||||
};
|
||||
|
||||
} // namespace blender::compositor
|
||||
|
||||
Reference in New Issue
Block a user