Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/system/Id.h')
-rw-r--r--source/blender/freestyle/intern/system/Id.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/system/Id.h b/source/blender/freestyle/intern/system/Id.h
index 9a83ae27767..549def6cabb 100644
--- a/source/blender/freestyle/intern/system/Id.h
+++ b/source/blender/freestyle/intern/system/Id.h
@@ -112,10 +112,12 @@ class Id {
/*! Operator< */
bool operator<(const Id &id) const
{
- if (_first < id._first)
+ if (_first < id._first) {
return true;
- if (_first == id._first && _second < id._second)
+ }
+ if (_first == id._first && _second < id._second) {
return true;
+ }
return false;
}