Merge pull request #738 from RosettaCommons/vmullig/require_semicolon
Removing semi-colons from some macros to remedy beautifier issue
Removing semi-colons from the runtime_assert, runtime_assert_msg, and runtime_assert_string_msg macros to force explicit semi-colons in the code (or compilation failure if they're missing). This is intended to help to remedy cases in which the beautifier fails due to missing semi-colons. For developers, this means that you need to have a semi-colon after a runtime_assert, runtime_assert_msg, or runtime_assert_string_msg, just as you would if you were making a function call.