Skip to content
Snippets Groups Projects
Commit 12e47bd5 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

DOC: SKIP_LINTING and deleted Property copy constructor.

parent 63f79bab
No related branches found
No related tags found
1 merge request!12F consolidation
...@@ -77,6 +77,8 @@ For the tests there is a slightly different setup required (with option `-D CMAK ...@@ -77,6 +77,8 @@ For the tests there is a slightly different setup required (with option `-D CMAK
1. `mkdir build && cd build/` 1. `mkdir build && cd build/`
2. `conan install .. -s "compiler.libcxx=libstdc++11"` 2. `conan install .. -s "compiler.libcxx=libstdc++11"`
3. `cmake -B . -D CMAKE_BUILD_TYPE=Debug ..` 3. `cmake -B . -D CMAKE_BUILD_TYPE=Debug ..`
* If your clang-format version is too old, formatting, linting etc. can be skipped:
`cmake -B . -D CMAKE_BUILD_TYPE=Debug -D SKIP_LINTING=ON ..`
4. `cmake --build .` 4. `cmake --build .`
### Run ### Run
......
...@@ -558,6 +558,16 @@ private: ...@@ -558,6 +558,16 @@ private:
* Container for Properties of Entities. * Container for Properties of Entities.
* *
* Should only be instantiated and write-accessed by the owning entity. * 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:
*
* \code
* // Accessing single properties as reference
* auto &property = my_properties.at(0);
* // Iterating via reference
* for (auto &property : my_properties) {...}
* \endcode
*/ */
class Properties class Properties
: public RepeatedPtrFieldWrapper<Property, : public RepeatedPtrFieldWrapper<Property,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment