Update "inline" qualifiers in a few examples.

This commit is contained in:
Matt Pharr
2012-01-17 18:10:48 -08:00
parent 7013d7d52f
commit 08189ce08c
3 changed files with 6 additions and 6 deletions

View File

@@ -124,7 +124,7 @@ ray_sphere_intersect(Isect &isect, Ray &ray, Sphere &sphere) {
}
static inline void
static void
orthoBasis(vec basis[3], vec n) {
basis[2] = n;
basis[1].x = 0.0; basis[1].y = 0.0; basis[1].z = 0.0;