summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_tokenizer.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-04-05 16:12:45 +0200
committerGitHub <noreply@github.com>2019-04-05 16:12:45 +0200
commita61ad365f526e7acdbc556abc5678cd225e120d7 (patch)
tree676bce820159900632ec4d239f60c6edd9230e9b /modules/gdscript/gdscript_tokenizer.cpp
parent696be497284e95e4ba70c88ff52bc6255af81bb8 (diff)
parentfc370b3feb419fdc1a8139bdf01f1dacf868ca1f (diff)
downloadredot-engine-a61ad365f526e7acdbc556abc5678cd225e120d7.tar.gz
Merge pull request #27677 from akien-mga/Wimplicit-fallthrough
Fix -Wimplicit-fallthrough warnings from GCC 8
Diffstat (limited to 'modules/gdscript/gdscript_tokenizer.cpp')
-rw-r--r--modules/gdscript/gdscript_tokenizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_tokenizer.cpp b/modules/gdscript/gdscript_tokenizer.cpp
index 8962e3bb34..abc739d645 100644
--- a/modules/gdscript/gdscript_tokenizer.cpp
+++ b/modules/gdscript/gdscript_tokenizer.cpp
@@ -744,7 +744,7 @@ void GDScriptTokenizerText::_advance() {
}
INCPOS(1);
is_node_path = true;
-
+ FALLTHROUGH;
case '\'':
case '"': {