Skip to content

Commit e3115cc

Browse files
Merge pull request #258 from TheThingsNetwork/bug/pb_global_includes
pb.h should be included from the local directory
2 parents 629e613 + 332fde3 commit e3115cc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/TheThingsMessage.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#define _THETHINGSMESSAGE_H_
66

77
#include "TheThingsNetwork.h"
8-
#include <pb.h>
9-
#include <pb_encode.h>
10-
#include <pb_decode.h>
8+
#include "pb.h"
9+
#include "pb_encode.h"
10+
#include "pb_decode.h"
1111
#include "deviceData.pb.h"
1212
#include "appData.pb.h"
1313

src/appData.pb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#ifndef PB_API_APPDATA_PB_H_INCLUDED
55
#define PB_API_APPDATA_PB_H_INCLUDED
6-
#include <pb.h>
6+
#include "pb.h"
77

88
/* @@protoc_insertion_point(includes) */
99
#if PB_PROTO_HEADER_VERSION != 30

src/deviceData.pb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#ifndef PB_API_DEVICEDATA_PB_H_INCLUDED
55
#define PB_API_DEVICEDATA_PB_H_INCLUDED
6-
#include <pb.h>
6+
#include "pb.h"
77

88
/* @@protoc_insertion_point(includes) */
99
#if PB_PROTO_HEADER_VERSION != 30

0 commit comments

Comments
 (0)