aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-02-27 13:27:23 +1100
committerNeil <nyamatongwe@gmail.com>2018-02-27 13:27:23 +1100
commit82aeb241248289a06a664d93cd2745f592ddfd98 (patch)
treefdd112b23ee8e9376845e8974b585bb44a607d24 /scripts
parent09f56ee9d4d300b3e4394332dd66078c8cb5a763 (diff)
downloadscintilla-mirror-82aeb241248289a06a664d93cd2745f592ddfd98.tar.gz
Added <utility> and <tuple> to header order and moved POSIX header <sys/time.h>
after standard C++ language headers.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/HeaderOrder.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/HeaderOrder.txt b/scripts/HeaderOrder.txt
index 94dd1d6a6..46fbe6b8f 100644
--- a/scripts/HeaderOrder.txt
+++ b/scripts/HeaderOrder.txt
@@ -14,7 +14,6 @@
#include <assert.h>
#include <ctype.h>
#include <limits.h>
-#include <sys/time.h>
// C++ wrappers of C standard library
#include <cstddef>
@@ -32,6 +31,8 @@
// C++ standard library
#include <stdexcept>
#include <new>
+#include <utility>
+#include <tuple>
#include <string>
#include <string_view>
#include <vector>
@@ -47,6 +48,9 @@
#include <iostream>
#include <sstream>
+// POSIX
+#include <sys/time.h>
+
// GTK+ headers
#include <glib.h>
#include <gmodule.h>