calculator/src/CalcManager/CEngine
Cyril b8b0fdf86b Improving code style : verbosity, indentation levels (#200)
Fixing some nested if() statements and reducing indentation levels.

Making some sections less verbose, e.g:

if (a == 1)
{
    b = true;
}
else
{
    b = false;
}
↓

b = (a == 1)
2019-03-18 12:31:04 -07:00
..
calc.cpp Fix initialization order in CEngine (#118) 2019-03-06 14:51:21 -08:00
CalcInput.cpp Build with /W4 (#197) 2019-03-08 23:15:28 -08:00
CalcUtils.cpp Fix declarations of functions (#186) 2019-03-13 13:15:08 -07:00
History.cpp Improving code style : verbosity, indentation levels (#200) 2019-03-18 12:31:04 -07:00
Number.cpp Hello GitHub 2019-01-28 16:24:37 -08:00
Rational.cpp CalcEngine: Manage precision internally to Rational and convert functions to operator overrides (#35) 2019-02-25 11:41:32 -08:00
RationalMath.cpp Rename scimath.h/cpp to RationalMath.h/cpp (#36) 2019-02-25 14:04:38 -08:00
scicomm.cpp Fix compilation issues due to unsigned/signed warnings treated as errors (#317) 2019-03-15 21:21:30 -07:00
scidisp.cpp Build with /W4 (#197) 2019-03-08 23:15:28 -08:00
scifunc.cpp Updating comments per the C++ core guidelines and removing trailing whitespace (#194) 2019-03-14 23:30:07 -07:00
scioper.cpp CalcEngine: Manage precision internally to Rational and convert functions to operator overrides (#35) 2019-02-25 11:41:32 -08:00
sciset.cpp Fix compilation issues due to unsigned/signed warnings treated as errors (#317) 2019-03-15 21:21:30 -07:00