Skip to content

Commit

Permalink
Add missing stdexcept includes (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bidski authored Aug 20, 2024
1 parent bce2671 commit 847eebe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nbsdecoder.js",
"version": "0.4.5",
"version": "0.4.6",
"description": "Node.js module for interacting with NUClear Binary Stream files",
"main": "nbsdecoder.js",
"types": "nbsdecoder.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/Packet.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

#include "Packet.hpp"

#include <stdexcept>

namespace nbs {

Packet Packet::FromJsValue(const Napi::Value& jsPacket, const Napi::Env& env) {
Expand Down
2 changes: 2 additions & 0 deletions src/Timestamp.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

#include "Timestamp.hpp"

#include <stdexcept>

namespace nbs {

namespace timestamp {
Expand Down

0 comments on commit 847eebe

Please sign in to comment.