diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-08-12 17:46:06 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-08-12 17:46:22 +0200 |
commit | 323cd811c41a9443b71b2ab3029fd1e3321dc7ae (patch) | |
tree | de78894b92065be07673ee826b88827e4bda58d1 /src | |
parent | 022689bd6bdd713238b34bbd6f1443830459b202 (diff) | |
download | fork-godot-webrtc-native-323cd811c41a9443b71b2ab3029fd1e3321dc7ae.tar.gz fork-godot-webrtc-native-323cd811c41a9443b71b2ab3029fd1e3321dc7ae.tar.bz2 fork-godot-webrtc-native-323cd811c41a9443b71b2ab3029fd1e3321dc7ae.zip |
Fix WebRTCPeer inclusion guard
Diffstat (limited to 'src')
-rw-r--r-- | src/WebRTCPeer.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WebRTCPeer.hpp b/src/WebRTCPeer.hpp index 510276a..52a754b 100644 --- a/src/WebRTCPeer.hpp +++ b/src/WebRTCPeer.hpp @@ -1,5 +1,5 @@ -#ifndef MY_PACKET_PEER -#define MY_PACKET_PEER +#ifndef WEBRTC_PEER_H +#define WEBRTC_PEER_H #include <Godot.hpp> @@ -33,4 +33,4 @@ public: ~WebRTCPeer(); }; -#endif // MY_PACKET_PEER +#endif // WEBRTC_PEER_H |