Skip to content
Snippets Groups Projects
Commit 4796d431 authored by florian's avatar florian
Browse files

STY: Formatting

parent f17a3636
No related branches found
No related tags found
1 merge request!12F consolidation
Pipeline #12218 failed
......@@ -20,9 +20,10 @@
*/
/**
* DataTypes have 2 dimensions: They may be atomic or reference typed, and they may be scalar or
* list valued. If they are atomic, they have an AtomicDataType. If they are reference typed, the
* reference name can be obtained with GetName().
* DataTypes have 2 dimensions: They may be atomic or reference typed, and they
* may be scalar or list valued. If they are atomic, they have an
* AtomicDataType. If they are reference typed, the reference name can be
* obtained with GetName().
*/
#ifndef CAOSDB_DATA_TYPE_H
......
......@@ -559,8 +559,8 @@ private:
*
* Should only be instantiated and write-accessed by the owning entity.
*
* Note that iterating over the Property contents only works via references, since the Property copy
* constructor is deliberately disabled:
* Note that iterating over the Property contents only works via references,
* since the Property copy constructor is deliberately disabled:
*
* \code
* // Accessing single properties as reference
......
......@@ -398,7 +398,7 @@ TEST(test_entity, test_property_iterator) {
ASSERT_EQ(entity.GetProperties().size(), 5);
int counter = 0;
for (auto &property : entity.GetProperties()) {
// TODO Copy constructor was deleted
// TODO(tf) Copy constructor was deleted
// auto nonref_property = entity.GetProperties().at(counter);
auto name = "PROPERTY-" + std::to_string(counter);
EXPECT_EQ(property.GetName(), name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment