13
0

more compiler warning fixes and a new version number

git-svn-id: svn://localhost/ardour2/trunk@1085 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-11-07 00:55:24 +00:00
parent f4d1fa1d9e
commit b20fdf5dde

View File

@ -415,6 +415,7 @@ ARDOUR::string_to_auto_state (std::string str)
fatal << string_compose (_("programming error: %1 %2"), "illegal AutoState string: ", str) << endmsg;
/*NOTREACHED*/
return Touch;
}
string
@ -435,6 +436,10 @@ ARDOUR::auto_state_to_string (AutoState as)
case Touch:
return X_("Touch");
}
fatal << string_compose (_("programming error: %1 %2"), "illegal AutoState type: ", as) << endmsg;
/*NOTREACHED*/
return "";
}
AutoStyle