You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Style: Set clang-format Standard to c++14
This commit is contained in:
@@ -355,7 +355,7 @@ void ScriptEditorDebugger::_file_selected(const String &p_file) {
|
||||
file->store_csv_line(line);
|
||||
|
||||
// values
|
||||
List<Vector<float> >::Element *E = perf_history.back();
|
||||
List<Vector<float>>::Element *E = perf_history.back();
|
||||
while (E) {
|
||||
|
||||
Vector<float> &perf_data = E->get();
|
||||
@@ -368,7 +368,7 @@ void ScriptEditorDebugger::_file_selected(const String &p_file) {
|
||||
}
|
||||
file->store_string("\n");
|
||||
|
||||
Vector<Vector<String> > profiler_data = profiler->get_data_as_csv();
|
||||
Vector<Vector<String>> profiler_data = profiler->get_data_as_csv();
|
||||
for (int i = 0; i < profiler_data.size(); i++) {
|
||||
file->store_csv_line(profiler_data[i]);
|
||||
}
|
||||
@@ -1291,7 +1291,7 @@ void ScriptEditorDebugger::_performance_draw() {
|
||||
const float spacing = point_sep / float(cols);
|
||||
float from = r.size.width;
|
||||
|
||||
const List<Vector<float> >::Element *E = perf_history.front();
|
||||
const List<Vector<float>>::Element *E = perf_history.front();
|
||||
float prev = -1;
|
||||
while (from >= 0 && E) {
|
||||
float m = perf_max[pi];
|
||||
|
||||
Reference in New Issue
Block a user