Skip to content

Commit 847eebe

Browse files
authored
Add missing stdexcept includes (#15)
1 parent bce2671 commit 847eebe

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nbsdecoder.js",
3-
"version": "0.4.5",
3+
"version": "0.4.6",
44
"description": "Node.js module for interacting with NUClear Binary Stream files",
55
"main": "nbsdecoder.js",
66
"types": "nbsdecoder.d.ts",

src/Packet.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
#include "Packet.hpp"
33

4+
#include <stdexcept>
5+
46
namespace nbs {
57

68
Packet Packet::FromJsValue(const Napi::Value& jsPacket, const Napi::Env& env) {

src/Timestamp.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
#include "Timestamp.hpp"
33

4+
#include <stdexcept>
5+
46
namespace nbs {
57

68
namespace timestamp {

0 commit comments

Comments
 (0)