Fix coding convention about member variables and static functions 84/287284/1
authorSuyeon Hwang <stom.hwang@samsung.com>
Thu, 19 Jan 2023 10:23:10 +0000 (19:23 +0900)
committerTizen AI <ai.tzn.sec@samsung.com>
Thu, 26 Jan 2023 06:57:49 +0000 (15:57 +0900)
commit137c84eed7a7a8a1afd264f638f94b5191b94414
tree44821d5764fe442ffa9347e23a11ea6cdd43703a
parent84f59252ce17f4e0b54e8465703cab24eb8a5234
Fix coding convention about member variables and static functions

- Issue:
Using two underscores(__) as name of variables or functions is
reserved by C and CPP compilers, so it may occur name colision.

- Solution:
Previously, most of the code followed old tizen coding convention.
However, in case of name, the convention conflicts with C and CPP
standard, because two underscore is already reserved as an identifier by
C and CPP standard. Thus, using two underscores may cause some problems.
To resolve this collision, this patch fixes the name of member variables
and static functions to match C and CPP standard. Through this patch,
CPP files in the project do not use two underscore as name of variables
and functions anymore.

Change-Id: I2309c0c1d7bdb37a3b55f996d1d0372dc39dd856
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
14 files changed:
audio-manager/src/vc_audio_manager.cpp
client/vc_mgr_ducking.cpp
common/VoiceControlClientInfo.cpp
common/VoiceControlClientInfo.h
common/VoiceControlClients.cpp
common/VoiceControlClients.h
common/VoiceControlConfig.cpp
common/VoiceControlConfig.h
common/VoiceControlEngineInfo.cpp
common/VoiceControlEngineInfo.h
common/VoiceControlEngines.cpp
common/VoiceControlEngines.h
common/vc_config_mgr.cpp
server/vcd_server_data.cpp