general indent beautification
This commit is contained in:
@ -23,8 +23,8 @@
|
||||
#ifdef _WIN32
|
||||
void setenv(char * a, char * b, int c)
|
||||
{
|
||||
char buf[1024];
|
||||
sprintf(buf, "%s=%s", a, b);
|
||||
char buf[1024];
|
||||
sprintf(buf, "%s=%s", a, b);
|
||||
_putenv(buf);
|
||||
}
|
||||
#endif
|
||||
@ -33,18 +33,18 @@ using namespace epics::pvAccess;
|
||||
using namespace epics::pvData;
|
||||
|
||||
static const char indata[] =
|
||||
"hello = world \n"
|
||||
" # oops\n"
|
||||
" #dd=da\n"
|
||||
" empty = \n"
|
||||
" this = is a test\n\n"
|
||||
;
|
||||
"hello = world \n"
|
||||
" # oops\n"
|
||||
" #dd=da\n"
|
||||
" empty = \n"
|
||||
" this = is a test\n\n"
|
||||
;
|
||||
|
||||
static const char expectdata[] =
|
||||
"empty = \n"
|
||||
"hello = world\n"
|
||||
"this = is a test\n"
|
||||
;
|
||||
"empty = \n"
|
||||
"hello = world\n"
|
||||
"this = is a test\n"
|
||||
;
|
||||
|
||||
static
|
||||
void showEscaped(const char *msg, const std::string& s)
|
||||
|
Reference in New Issue
Block a user