Skip to content

Commit

Permalink
add include for limit
Browse files Browse the repository at this point in the history
fixes error: no member named 'numeric_limits' in namespace 'std'
  • Loading branch information
kturney authored and ma2bd committed Jan 23, 2023
1 parent 838218e commit 7d89de9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions serde-generate/runtime/cpp/bcs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <algorithm>
#include <cassert>
#include <limits>

#include "binary.hpp"
#include "serde.hpp"
Expand Down
1 change: 1 addition & 0 deletions serde-generate/runtime/cpp/bincode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#pragma once

#include <cstdint>
#include <limits>

#include "binary.hpp"
#include "serde.hpp"
Expand Down

0 comments on commit 7d89de9

Please sign in to comment.