From 0fec83ebc89bd6b86f772d942b7c39b13f773d3a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 12 Jun 2014 13:45:06 -0400 Subject: Add a C89 compliance test for the headers. Technically we still require a couple things from C99 like "bool", but it works with -std=c89 under gcc. --- libdimension/dimension/interior.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdimension/dimension/interior.h') diff --git a/libdimension/dimension/interior.h b/libdimension/dimension/interior.h index 006e88d..0ff697d 100644 --- a/libdimension/dimension/interior.h +++ b/libdimension/dimension/interior.h @@ -23,9 +23,9 @@ * Object interiors. */ -/// An interior. +/** An interior. */ typedef struct dmnsn_interior { - double ior; ///< Refractive index. + double ior; /**< Refractive index. */ } dmnsn_interior; /** -- cgit v1.2.3