mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
common loadermgr: fix missing break; in switch-case.
This commit is contained in:
parent
f20ef0dc15
commit
cadbbb8028
1 changed files with 2 additions and 0 deletions
|
@ -82,9 +82,11 @@ static Loader* _find(FileType type)
|
|||
}
|
||||
case FileType::Raw: {
|
||||
format = "RAW";
|
||||
break;
|
||||
}
|
||||
case FileType::Tvg: {
|
||||
format = "TVG";
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
format = "???";
|
||||
|
|
Loading…
Add table
Reference in a new issue