Commit 9c4625959456596985730506e5f86fe8288b9566

Fix formatting in ColorTree.cpp:FormatState decl
Author: xaizek
Author date (UTC): 2021-12-29 00:26
Committer name: xaizek
Committer date (UTC): 2021-12-29 00:26
Parent(s): ac223035ca9deff48b8bb230b98b088eacbd9426
Signing key: 99DC5E4DB05F6BE2
Tree: 90ee8260e2666dbf0b16de656fcbca2072fd8b24
File Lines added Lines deleted
ColorTree.cpp 5 5
File ColorTree.cpp changed (mode: 100644) (index 136516f..c8c08b3)
... ... public:
113 113 { return current; } { return current; }
114 114
115 115 private: private:
116 Format current; // Current format.
116 Format current; // Current format.
117 117 std::stack<Format> previous; // Previous formats. std::stack<Format> previous; // Previous formats.
118 std::stack<int> fg; // Stack of active foreground colors.
119 std::stack<int> bg; // Stack of active background colors.
120 int boldCounter = 0; // Count bold attribute was encountered.
121 int underlinedCounter = 0; // Count underline attribute was encountered.
118 std::stack<int> fg; // Stack of active foreground colors.
119 std::stack<int> bg; // Stack of active background colors.
120 int boldCounter = 0; // Count bold attribute was encountered.
121 int underlinedCounter = 0; // Count underline attribute was encountered.
122 122 }; };
123 123
124 124 void void
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/libcursed

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/libcursed

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master