Skip to content

Commit e8bfb0e

Browse files
committed
style: Replace spaces with tabs for consistent indentation across files
1 parent fb24157 commit e8bfb0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

emmy_debugger/src/debugger/extension_point.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ bool ExtensionPoint::QueryVariableGeneric(lua_State *L, Idx<Variable> variable,
140140
result = lua_toboolean(L, -1);
141141
} else {
142142
const auto err = lua_tostring(L, -1);
143-
printf("query error in %s: %s\n", queryFunction, err);
143+
printf("query error in %s: %s\n", queryFunction, err);
144144
}
145145
}
146146
}
@@ -150,11 +150,11 @@ bool ExtensionPoint::QueryVariableGeneric(lua_State *L, Idx<Variable> variable,
150150
}
151151

152152
bool ExtensionPoint::QueryVariable(lua_State *L, Idx<Variable> variable, const char *typeName, int object, int depth) {
153-
return QueryVariableGeneric(L, variable, typeName, object, depth, "queryVariable");
153+
return QueryVariableGeneric(L, variable, typeName, object, depth, "queryVariable");
154154
}
155155

156156
bool ExtensionPoint::QueryVariableCustom(lua_State *L, Idx<Variable> variable, const char *typeName, int object, int depth) {
157-
return QueryVariableGeneric(L, variable, typeName, object, depth, "queryVariableCustom");
157+
return QueryVariableGeneric(L, variable, typeName, object, depth, "queryVariableCustom");
158158
}
159159

160160
lua_State *ExtensionPoint::QueryParentThread(lua_State *L) {

0 commit comments

Comments
 (0)