citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 7c99717bb256c2cc8a3aff204b23f9b73791dd75
parent 997846a66d2f2b9cacfa661b9165ea6c8b1f1c2c
Author: Kyle Milz <kyle@0x30.net>
Date:   Mon,  1 Aug 2016 12:01:10 -0600

src: break up > 80 char line

Diffstat:
Msrc/inst_main.cc | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/inst_main.cc b/src/inst_main.cc @@ -126,7 +126,8 @@ CitrunInst::CitrunInst(int argc, char *argv[]) : void CitrunInst::process_cmdline() { - m_log << m_pfx << "Processing " << m_args.size() << " command line arguments.\n"; + m_log << m_pfx << "Processing " << m_args.size() + << " command line arguments.\n"; for (auto &arg : m_args) { if (std::strcmp(arg, "-E") == 0) {