fixup! clang-format

This commit is contained in:
Xiaoge Su 2022-03-14 23:15:49 -07:00
parent 99b030c2f6
commit bd19845ef6
4 changed files with 21 additions and 19 deletions

View File

@ -30,6 +30,7 @@
class KnobKeyValuePairs {
public:
using container_t = std::unordered_map<std::string, ParsedKnobValue>;
private:
// Here the knob value is directly stored, unlike KnobValue, for simplicity
container_t knobs;
@ -51,6 +52,7 @@ class KnobProtectiveGroup {
void snapshotOriginalKnobs();
void assignKnobs(const KnobKeyValuePairs& overrideKnobs);
public:
KnobProtectiveGroup(const KnobKeyValuePairs& overridenKnobs_);
~KnobProtectiveGroup();