mirror of
https://github.com/arun11299/cpp-subprocess.git
synced 2025-08-07 05:46:11 -04:00
Replace tabs with spaces
Coding style uses indent with spaces, but there were a few lost tabs that had to be replaced.
This commit is contained in:
parent
c8577e3d83
commit
78651742fb
@ -171,8 +171,7 @@ namespace util
|
|||||||
* Function: join
|
* Function: join
|
||||||
* Parameters:
|
* Parameters:
|
||||||
* [in] vec : Vector of strings which needs to be joined to form
|
* [in] vec : Vector of strings which needs to be joined to form
|
||||||
* a single string with words seperated by
|
* a single string with words seperated by a seperator char.
|
||||||
* a seperator char.
|
|
||||||
* [in] sep : String used to seperate 2 words in the joined string.
|
* [in] sep : String used to seperate 2 words in the joined string.
|
||||||
* Default constructed to ' ' (space).
|
* Default constructed to ' ' (space).
|
||||||
* [out] string: Joined string.
|
* [out] string: Joined string.
|
||||||
@ -325,7 +324,7 @@ namespace util
|
|||||||
buf.resize(orig_size);
|
buf.resize(orig_size);
|
||||||
buffer += rd_bytes;
|
buffer += rd_bytes;
|
||||||
total_bytes_read += rd_bytes;
|
total_bytes_read += rd_bytes;
|
||||||
} else if (rd_bytes != -1){
|
} else if (rd_bytes != -1) {
|
||||||
total_bytes_read += rd_bytes;
|
total_bytes_read += rd_bytes;
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user