summaryrefslogtreecommitdiffstats
path: root/src/Generating/PieceGeneratorBFSTree.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Some emplace_back replacements (#5149)12xx122021-03-071-2/+2
| | | * replace push_back with emplace_back when a new object was created in the function call
* Replaced cpp14::make_unique<> with std::make_unique<>.Mattes D2020-08-011-1/+1
|
* Add a formatting function for Vector3 (#4282)peterbell102018-09-241-8/+6
| | | | | | | | | | * Vector3: Add custom fmt compatible formatter. * cLuaState: Add fmt version of ApiParamError * Use vector formatting in manual bindings * Always log vectors with FLOG
* Add the fmt library (#4065)peterbell102018-01-031-2/+2
| | | | | | | * Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style.
* Gen: Moved PiecePool into a separate file.Mattes D2017-05-041-0/+345
Also rewritten the PieceGenerator to use std::unique_ptr.