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
commit4434a57717efbec42d67c571890fc848183e500f (patch)
treec5de0aff85545ab1a8d4f6fe925560eadcd9de23 /scripts
parentc81bc073334745825241e9817bc30aee2418ff9c (diff)
downloadscintilla-mirror-4434a57717efbec42d67c571890fc848183e500f.tar.gz
Backport: Added <utility> and <tuple> to header order and moved POSIX header <sys/time.h> after standard C++ language headers.
Backport of changeset 6461:abc640b89c43.
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 4d384d8b9..04f036473 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>
#include <wchar.h>
// C++ wrappers of C standard library
@@ -33,6 +32,8 @@
// C++ standard library
#include <stdexcept>
#include <new>
+#include <utility>
+#include <tuple>
#include <string>
#include <vector>
#include <deque>
@@ -47,6 +48,9 @@
#include <iostream>
#include <sstream>
+// POSIX
+#include <sys/time.h>
+
// GTK+ headers
#include <glib.h>
#include <gmodule.h>