- Sep 10, 2019
-
-
- Sep 06, 2019
-
-
- Aug 23, 2019
-
-
Dmitri Naumov authored
-
- Aug 21, 2019
-
-
Lars Bilke authored
-
- Aug 20, 2019
-
-
Dmitri Naumov authored
-
Dmitri Naumov authored
-
Dmitri Naumov authored
-
- Aug 15, 2019
-
-
Dmitri Naumov authored
Moving the implemented function of the class reduces the rapidxml scope to translation unit.
-
Dmitri Naumov authored
-
- Aug 14, 2019
-
-
Lars Bilke authored
-
- Jul 16, 2019
-
-
Dmitri Naumov authored
Including - usage of static_cast instead of c-style cast, - single variable declaration per line, - removing const from return types - omit unnecessary string to char* conversions, The used clang-tidy checks are: google-readability-casting, readability-const-return-type, readability-container-size-empty, readability-delete-null-pointer, readability-deleted-default, readability-else-after-return, readability-function-size, readability-identifier-naming, readability-inconsistent-declaration-parameter-name, readability-isolate-declaration, readability-misleading-indentation, readability-misplaced-array-index, readability-named-parameter, readability-redundant-*, readability-simplify-*, readability-static-accessed-through-instance, readability-static-definition-in-anonymous-namespace, readability-string-compare, readability-uniqueptr-delete-release
-
Dmitri Naumov authored
-
Dmitri Naumov authored
Update dependencies.
-
Dmitri Naumov authored
-
Dmitri Naumov authored
Most of the current .clang-tidy contained checks: google-explicit-constructor google-readability-braces-around-statements modernize-loop-convert modernize-use-default-member-init modernize-use-emplace modernize-use-using readability-braces-around-statements readability-else-after-return readability-named-parameter *readability-namespace-comments *readability-inconsistent-* readability-redundant-member-init readability-simplify-boolean-expr readability-string-compare *explicit-conversions*
-
Dmitri Naumov authored
-
- Jul 11, 2019
-
-
Lars Bilke authored
-
Lars Bilke authored
-
- Jun 24, 2019
-
-
- Jun 16, 2019
-
-
Dmitri Naumov authored
Also use own findElementOrError() algorithm.
-
- May 22, 2019
-
-
Dmitri Naumov authored
-
- May 21, 2019
-
-
Dmitri Naumov authored
Avoid unnecessary initialization.
-
Dmitri Naumov authored
Constify the remaining variable in the declaration list.
-
- Mar 05, 2019
-
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
cppcheck message: Prefer prefix ++/-- operators for non-primitive types.. Prefix ++/-- operators should be preferred for non-primitive types. Pre-increment/decrement can be more efficient than post-increment/decrement. Post-increment/decrement usually involves keeping a copy of the previous value around and adds a little extra code.
-
Tom Fischer authored
-
Tom Fischer authored
cppcheck message: class 'Raster' does not have a copy constructor which is recommended since the class contains a pointer to allocated memory.
-
Tom Fischer authored
-
Tom Fischer authored
-
Tom Fischer authored
cppcheck message: The scope of the variable 'n_intersections' can be reduced.
-
Tom Fischer authored
-
Tom Fischer authored
cppcheck message: Class 'MinimalBoundingSphere' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided.
-
- Mar 04, 2019
-
-
-
Dmitri Naumov authored
clang-tidy modernize-use-bool-literals check.
-