Index: tests/exceptions/except-io.hfa
===================================================================
--- tests/exceptions/except-io.hfa	(revision d3cf623098e72d98fd3ea76544061496946dbba4)
+++ tests/exceptions/except-io.hfa	(revision 5a0230867be33e5412eec9b87a205ff4cf6cd0a4)
@@ -9,9 +9,9 @@
 };
 
-inline void ?{}(loud_exit & this, const char * area) {
+static inline void ?{}(loud_exit & this, const char * area) {
     this.area = area;
 }
 
-inline void ^?{}(loud_exit & this) {
+static inline void ^?{}(loud_exit & this) {
     sout | "Exiting: " | this.area;
 }
@@ -21,10 +21,10 @@
 };
 
-inline void ?{}(loud_region & this, const char * region) {
+static inline void ?{}(loud_region & this, const char * region) {
 	this.region = region;
 	sout | "Entering: " | region;
 }
 
-inline void ^?{}(loud_region & this) {
+static inline void ^?{}(loud_region & this) {
 	sout | "Exiting: " | this.region;
 }
