Revision 09080cf911cae5c7faaf8573e82c899903e7b9fc authored by Dmitri Naumov on 09 March 2021, 22:05:24 UTC, committed by Dmitri Naumov on 10 March 2021, 08:34:57 UTC
boost::none -> std::nullopt
boost::make_optional -> std::make_optional
boost::optional<T>::get() -> std::optional<T>::value()
1 parent 363cf6d
Raw File
.clang-format
---
Language:        Cpp
BasedOnStyle:    Google

AccessModifierOffset: -4
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AllowShortFunctionsOnASingleLine: Inline
BreakBeforeBraces: Allman
DerivePointerAlignment: false
ExperimentalAutoDetectBinPacking: true
IndentWidth:     4
PointerAlignment: Left
Standard:        Cpp11
TabWidth:        4
UseTab:          Never
back to top