smcameron / open-simplex-noise-in-c

Port of Kurt Spencer's java implementation of open simplex noise to C -- Note: This is NOT Ken Perlin's Simplex noise algorithm.
The Unlicense
139 stars 19 forks source link

header not pulling in def for uint64_t #1

Closed stolk closed 9 years ago

stolk commented 9 years ago

open-simplex-noise.h should probably include as it depends on uint64_t.

smcameron commented 9 years ago

Nope. Include stdint.h or inttypes.h prior to including open-simplex-noise.h.

-- steve

On Sun, Nov 2, 2014 at 8:41 PM, Bram Stolk notifications@github.com wrote:

open-simplex-noise.h should probably include as it depends on uint64_t.

— Reply to this email directly or view it on GitHub https://github.com/smcameron/open-simplex-noise-in-c/issues/1.

smcameron commented 9 years ago

Ok, after thinking about this, and consulting some colleagues, I have decided my instincts about this were incorrect, and have gone ahead and included stdint.h from within open-simplex-noise.h.

fixed by 6dcf5cca96672a0e75b5c6eb104f81a82f0d8200

-- steve