summaryrefslogtreecommitdiffstats
path: root/src/corelib/plugin/quuid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/plugin/quuid.h')
-rw-r--r--src/corelib/plugin/quuid.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/corelib/plugin/quuid.h b/src/corelib/plugin/quuid.h
index bfea13f9fc..87966ad891 100644
--- a/src/corelib/plugin/quuid.h
+++ b/src/corelib/plugin/quuid.h
@@ -104,7 +104,7 @@ public:
data1 = 0;
data2 = 0;
data3 = 0;
- for(int i = 0; i < 8; i++)
+ for (int i = 0; i < 8; i++)
data4[i] = 0;
}
QUuid(uint l, ushort w1, ushort w2, uchar b1, uchar b2, uchar b3, uchar b4, uchar b5, uchar b6, uchar b7, uchar b8) noexcept
@@ -169,7 +169,7 @@ public:
data1 = guid.Data1;
data2 = guid.Data2;
data3 = guid.Data3;
- for(int i = 0; i < 8; i++)
+ for (int i = 0; i < 8; i++)
data4[i] = guid.Data4[i];
}
#endif
@@ -213,7 +213,6 @@ public:
return QUuid::createUuidV5(ns, baseData.toUtf8());
}
-
QUuid::Variant variant() const noexcept;
QUuid::Version version() const noexcept;