general indent beautification

This commit is contained in:
Matej Sekoranja
2016-03-10 23:36:16 +01:00
parent d139c42d17
commit 5279d247ca
110 changed files with 21778 additions and 21525 deletions

View File

@@ -22,8 +22,9 @@ namespace pvAccess {
/// Byte to hexchar mapping.
static const char lookup[] = {
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
};
/// Get hex representation of byte.
string toHex(int8 b) {
@@ -57,7 +58,7 @@ void hexDump(std::string const & name, const int8 *bs, int start, int len) {
}
void hexDump(std::string const & prologue, string const & name, const int8 *bs,
int start, int len) {
int start, int len) {
stringstream header;