From f2b3c14721d16e5394b7977269b59dce6343826b Mon Sep 17 00:00:00 2001 From: Filipp Gelman Date: Thu, 9 Apr 2015 08:11:34 -0400 Subject: [PATCH] Handle LAST enum value in switch statement MW-5507 http://jira.makerbot.net/browse/MW-5507 --- include/mbcoreutils/toolpath_tags.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/mbcoreutils/toolpath_tags.h b/include/mbcoreutils/toolpath_tags.h index c197d65..0e9cb9d 100644 --- a/include/mbcoreutils/toolpath_tags.h +++ b/include/mbcoreutils/toolpath_tags.h @@ -63,6 +63,7 @@ inline std::string stringFromToolpathTag(const ToolpathTag tag) { return "Long Retract"; case kLongRestart: return "Long Restart"; + case LAST: default: return ""; }