YACLib
C++ library for concurrent tasks execution
|
You can use our git hooks, see githooks for detail.
Only additions here (see .clang-format). See .clang-tidy for naming convention.
Only additions here (see .clang-tidy).
final
for classes if possiblenoexcept
for methods if possiblefinal
for virtual methods, if not override
virtual
, override
, final
at the same time#include "..."
, use #include <...>
instead of this#include guard
, use #pragma once
=
for constructor if possible, if not try {}
, if not ()