[K/N] Fix indents

^KT-61259
This commit is contained in:
Vladimir Sukharev
2023-12-12 01:13:49 +01:00
committed by Space Team
parent dc2ea15dee
commit 089b7f31b5
3 changed files with 56 additions and 56 deletions
+4 -4
View File
@@ -9,11 +9,11 @@
// FILE: auxiliaryCppSources.h
#ifdef __cplusplus
extern "C" {
#endif
#endif
const char* name();
const char* name();
#ifdef __cplusplus
#ifdef __cplusplus
}
#endif
@@ -23,7 +23,7 @@ extern "C" {
static std::string _name = "OK";
const char* name() {
extern "C" const char* name() {
return _name.c_str();
}