xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit 06c4cfa15a772d41d9d945c2dd6eb50f66c275f6

Drop unused parameter of FilePrinter's constructor
Author: xaizek
Author date (UTC): 2017-09-18 10:45
Committer name: xaizek
Committer date (UTC): 2017-09-18 10:45
Parent(s): 8573ef27fdee52278bf70205ef7713059c126e8b
Signing key: 99DC5E4DB05F6BE2
Tree: dfa97cbf1a151ba92d23aab7ffa34256a09b79a4
File Lines added Lines deleted
src/FilePrinter.cpp 2 2
src/FilePrinter.hpp 1 3
File src/FilePrinter.cpp changed (mode: 100644) (index 0244b4a..cc2e078)
... ... private:
191 191
192 192 } }
193 193
194 FilePrinter::FilePrinter(const FilePrinterSettings &settings, bool allowColors)
195 : colorizeOutput(allowColors && settings.isColorOutputAllowed()),
194 FilePrinter::FilePrinter(const FilePrinterSettings &settings)
195 : colorizeOutput(settings.isColorOutputAllowed()),
196 196 highlighter(settings.isHtmlOutput() ? DATADIR "/srchilight/html.outlang" highlighter(settings.isHtmlOutput() ? DATADIR "/srchilight/html.outlang"
197 197 : "esc256.outlang"), : "esc256.outlang"),
198 198 langMap("lang.map") langMap("lang.map")
File src/FilePrinter.hpp changed (mode: 100644) (index dfe5045..713b327)
... ... public:
77 77 * @brief Constructs an object performing some highlighting preparations. * @brief Constructs an object performing some highlighting preparations.
78 78 * *
79 79 * @param settings FilePrinter settings. * @param settings FilePrinter settings.
80 * @param allowColors Highlight source file.
81 80 */ */
82 explicit FilePrinter(const FilePrinterSettings &settings,
83 bool allowColors = true);
81 explicit FilePrinter(const FilePrinterSettings &settings);
84 82
85 83 public: public:
86 84 /** /**
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/uncov

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

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