c2c8228d30b530be71654c9cc9264886678a8e75
This commit does not have any functional or performance change.
This change adds -std=c++11 compile option to Makefiles to
enalbe using C++11 standard features.
This change also cleans errors that c++11 standard complains:
Werror=literal-suffix,
e.g:
"msg_seq=%"PRIi64"."
error: invalid suffix on literal;
C++11 requires a space between literal and identifier
changed to:
"msg_seq=%" PRIi64 "."
Story: 2003493
Task: 24770
Change-Id: I0225a4326ff8320f36246cc5678698781e903617
Signed-off-by: Bin Qian <bin.qian@windriver.com>
stx-ha
StarlingX Service Management
Description
Languages
C
70.2%
Python
18.5%
Shell
7.6%
C++
3.3%
Makefile
0.4%