Skip to content
Snippets Groups Projects
Commit 967e378f authored by vjpai's avatar vjpai
Browse files

More docs

parent 41c7d01f
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ C++11 constructs. Here are some guidelines, to be extended as needed:
// code
}
```
are not allowed and should be replaced with code such as
```c
for (auto it = vec.begin; it != vec.end(); it++) {
......@@ -41,6 +42,7 @@ C++11 constructs. Here are some guidelines, to be extended as needed:
// code
}
```
- Do not use lambda of any kind (no capture, explicit capture, or
default capture). Other C++ functional features such as
`std::function` or `std::bind` are allowed
......
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