From 4f1dc8f6f9feab8d17dbd51713fdf8fe2aa181f8 Mon Sep 17 00:00:00 2001 From: Dalton Woodard Date: Tue, 14 Oct 2014 23:27:42 -0700 Subject: [PATCH] Added CHANGELOG.md --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f41bcd0 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Oct. 14, 2014; Dalton Woodard +- Fixed all compilation warnings in `mpc.h` and `mpc.c`; both now compile successfully on OS X under clang-600.0.51 +and gcc 4.9.1 with the following flags: +``` +-std=c11 -O3 -g -Werror -Wall -Wextra -Wformat=2 -Wshadow -Wno-format-nonliteral -Wcast-align -Wwrite-strings +-Wstrict-prototypes -Wold-style-definition -Wredundant-decls -Wnested-externs -Wmissing-include-dirs -Wswitch-default +``` +- Changed compilation standard from ansi to c11. +- Further small changes in source (documented in-line). +