Skip to content

Commit

Permalink
bugfix for #3859
Browse files Browse the repository at this point in the history
  • Loading branch information
ofTheo committed May 21, 2015
1 parent 4f81317 commit ff6c6a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -541,7 +541,7 @@ OutboundPacketStream& OutboundPacketStream::operator<<( const MidiMessage& rhs )
}


OutboundPacketStream& OutboundPacketStream::operator<<( int64 rhs )
OutboundPacketStream& OutboundPacketStream::operator<<( int64_t rhs )
{
CheckForAvailableArgumentSpace(8);

Expand Down
3 changes: 2 additions & 1 deletion addons/ofxOsc/libs/oscpack/src/osc/OscOutboundPacketStream.h
Expand Up @@ -38,6 +38,7 @@
#define INCLUDED_OSCPACK_OSCOUTBOUNDPACKETSTREAM_H

#include <cstring> // size_t
#include <iostream>

#include "OscTypes.h"
#include "OscException.h"
Expand Down Expand Up @@ -114,7 +115,7 @@ class OutboundPacketStream{
OutboundPacketStream& operator<<( char rhs );
OutboundPacketStream& operator<<( const RgbaColor& rhs );
OutboundPacketStream& operator<<( const MidiMessage& rhs );
OutboundPacketStream& operator<<( int64 rhs );
OutboundPacketStream& operator<<( int64_t rhs );
OutboundPacketStream& operator<<( const TimeTag& rhs );
OutboundPacketStream& operator<<( double rhs );
OutboundPacketStream& operator<<( const char* rhs );
Expand Down

0 comments on commit ff6c6a4

Please sign in to comment.