summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.dev>2021-10-25 10:49:11 +0200
committerNiklas Haas <github-daiK1o@haasn.dev>2021-11-03 14:09:27 +0100
commitc704824b45731f2400355ebe8ae0c576e19dc072 (patch)
treec9410eb47d37fa0b0d5d43af34e6998f3114d1b6 /options
parent210767169191e19c70f9c7b63528b0d629ddbcfa (diff)
downloadmpv-c704824b45731f2400355ebe8ae0c576e19dc072.tar.bz2
mpv-c704824b45731f2400355ebe8ae0c576e19dc072.tar.xz
osdep: add MP_UNREACHABLE
This seems to work on gcc, clang and mingw as-is, but I made it conditional on __GNUC__ just in case, even though I can't figure out which compilers we care about that don't export this define. Also replace all instances of assert(0) in the code by MP_UNREACHABLE(), which is a strict improvement.
Diffstat (limited to 'options')
-rw-r--r--options/m_config_core.c2
-rw-r--r--options/parse_configfile.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/options/m_config_core.c b/options/m_config_core.c
index f82b886670..fd476a0627 100644
--- a/options/m_config_core.c
+++ b/options/m_config_core.c
@@ -879,7 +879,7 @@ void mp_read_option_raw(struct mpv_global *global, const char *name,
}
}
- assert(0); // not found
+ MP_UNREACHABLE(); // not found
}
static const struct m_config_group *find_group(struct mpv_global *global,
diff --git a/options/parse_configfile.c b/options/parse_configfile.c
index 627c466948..1ef256989f 100644
--- a/options/parse_configfile.c
+++ b/options/parse_configfile.c
@@ -176,7 +176,7 @@ static bstr read_file(struct mp_log *log, const char *filename)
}
size += s;
}
- assert(0);
+ MP_UNREACHABLE();
}
// Load options and profiles from from a config file.