Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #65 from CyberShadow/fix-build-2011-09-03
Browse files Browse the repository at this point in the history
Fix case fallthrough build breakage
  • Loading branch information
Don Clugston committed Sep 3, 2011
2 parents 6f4bf93 + 7fb7227 commit 4d64fc3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/demangle.d
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,7 @@ private struct Demangle
// \", \?
case '\\':
put( "'\\\\'" );
return;
case '\a':
put( "'\\a'" );
return;
Expand All @@ -1248,6 +1249,7 @@ private struct Demangle
return;
case '\f':
put( "'\\f'" );
return;
case '\n':
put( "'\\n'" );
return;
Expand Down

0 comments on commit 4d64fc3

Please sign in to comment.