Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-09Apply formattingStephan Vedder
2022-05-06Use clang-tidy to find performance issues (#60)Stephan Vedder
Use the clang-tidy static code analyzer to find any performance issues within our source code. I've applied the following checks: performance-faster-string-find: find any string find algorithms that can be improved performance-for-range-copy: avoid unnecessary copies inside range based for loops performance-inefficient-vector-operation: when growing a vector inside a loop, reserve the size before performance-type-promotion-in-math-fn: avoid calling double variants of math functions if the input & output is a float performance-unnecessary-copy-initialization: avoid creating any local variable which could be references
2022-05-06Merge pull request #62 from feliwir/clang-tidy-overrideNeal Gompa (ニール・ゴンパ)
Use override keyword where applicable
2022-05-04Use override keyword where applicableStephan Vedder
2022-05-04Use range based loops where applicableStephan Vedder
2022-04-12Add codebase from main repo, git hash 6844db6a1bb5Max Danielsson