Skip to content

Commit

Permalink
add stdexcept
Browse files Browse the repository at this point in the history
  • Loading branch information
jwijffels committed May 31, 2020
1 parent 438ee9e commit 79725c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/word2vec/include/word2vec.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <memory>
#include <functional>
#include <cmath>
#include <stdexcept>

namespace w2v {
/**
Expand Down
1 change: 1 addition & 0 deletions src/word2vec/include/wordReader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include <string>
#include <cstring>
#include <stdexcept>

#include "mapper.hpp"

Expand Down
1 change: 1 addition & 0 deletions src/word2vec/lib/vocabulary.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <vector>
#include <unordered_map>
#include <algorithm>
#include <stdexcept>

#include "word2vec.hpp"
#include "mapper.hpp"
Expand Down

0 comments on commit 79725c6

Please sign in to comment.