summaryrefslogtreecommitdiffstats
path: root/options/m_config_frontend.h
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2023-10-19 20:26:26 +0600
committersfan5 <sfan5@live.de>2023-10-20 21:31:09 +0200
commitd05ef7fdc4eb527a940a1ec7449e8c5bf60f5862 (patch)
tree49a5e8f5bd1c07d890c8944728ee4985b68686f7 /options/m_config_frontend.h
parent450a69b1d6592d8bc45c28250b86ba4a8b1d8e54 (diff)
downloadmpv-d05ef7fdc4eb527a940a1ec7449e8c5bf60f5862.tar.bz2
mpv-d05ef7fdc4eb527a940a1ec7449e8c5bf60f5862.tar.xz
various: sort some standard headers
since i was going to fix the include order of stdatomic, might as well sort the surrouding includes in accordance with the project's coding style. some headers can sometime require specific include order. standard library headers usually don't. but mpv might "hack into" the standard headers (e.g pthreads) so that complicates things a bit more. hopefully nothing breaks. if it does, the style guide is to blame.
Diffstat (limited to 'options/m_config_frontend.h')
-rw-r--r--options/m_config_frontend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/m_config_frontend.h b/options/m_config_frontend.h
index 3f0b25a5b2..6108d9feec 100644
--- a/options/m_config_frontend.h
+++ b/options/m_config_frontend.h
@@ -17,9 +17,10 @@
#pragma once
+#include <stdatomic.h>
+#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
-#include <stdbool.h>
#include "common/common.h"
#include "common/global.h"
@@ -29,7 +30,6 @@
#include "misc/bstr.h"
#include "misc/dispatch.h"
#include "options/m_option.h"
-#include <stdatomic.h>
// m_config provides an API to manipulate the config variables in MPlayer.
// It makes use of the Options API to provide a context stack that