Commit 91ede6a5 authored by Kamal Marhubi's avatar Kamal Marhubi

Replace <cfoo> with <foo.h>

This reduces dependencies on stdc++. For rationale, see
  https://github.com/kamalmarhubi/capnproto/commit/62a562f6d2c7bd147958106a1cf4169533d43f83#commitcomment-14375773
parent 62a562f6
......@@ -20,9 +20,9 @@
// THE SOFTWARE.
#include "json.h"
#include <cmath> // for HUGEVAL to check for overflow in std::strtod
#include <cstdlib> // std::strtod
#include <cerrno> // for std::strtod errors
#include <math.h> // for HUGEVAL to check for overflow in std::strtod
#include <stdlib.h> // std::strtod
#include <errno.h> // for std::strtod errors
#include <unordered_map>
#include <capnp/orphan.h>
#include <kj/debug.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment