mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Style: Set clang-format Standard to c++14
This commit is contained in:
parent
7e61be3cb0
commit
6e600cb3f0
248 changed files with 841 additions and 842 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue