Skip to content

Commit

Permalink
Fix missing headers
Browse files Browse the repository at this point in the history
Summary: Add missing header includes exposed by modular build.

Reviewed By: yfeldblum

Differential Revision: D22739351

fbshipit-source-id: 21482efdfd6b6e83d56757d8b74fec80bd24e0a2
  • Loading branch information
andrewjcg authored and facebook-github-bot committed Jul 29, 2020
1 parent 02fdc36 commit db2afc9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fatal/debug/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
// production build
#ifdef NDEBUG

# include <type_traits>

namespace fatal {

using debug_mode = std::false_type;
Expand All @@ -29,9 +31,9 @@ using debug_mode = std::false_type;
// debug build
#else // NDEBUG

# include <iostream>

# include <cstdlib>
# include <iostream>
# include <type_traits>

namespace fatal {

Expand Down

0 comments on commit db2afc9

Please sign in to comment.