mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixes for the build with GCC
This commit is contained in:
parent
51f6c5d01c
commit
709d4049f7
1 changed files with 3 additions and 3 deletions
|
|
@ -677,7 +677,7 @@ public:
|
|||
|
||||
beginTest ("OSC message with multiple arguments");
|
||||
{
|
||||
OSCMessage outMessage ("/test/four_args", 42, 0.5f, "foo", "bar");
|
||||
OSCMessage outMessage ("/test/four_args", 42, 0.5f, String ("foo"), String ("bar"));
|
||||
|
||||
OSCOutputStream output;
|
||||
output.writeMessage (outMessage);
|
||||
|
|
@ -721,7 +721,7 @@ public:
|
|||
|
||||
OSCMessage inMessage = inBundle[0].getMessage();
|
||||
|
||||
expectEquals (inMessage.getAddressPattern().toString(), "/test/one_arg");
|
||||
expectEquals (inMessage.getAddressPattern().toString(), String ("/test/one_arg"));
|
||||
expectEquals (inMessage.size(), 1);
|
||||
expectEquals (inMessage[0].getInt32(), 42);
|
||||
}
|
||||
|
|
@ -730,7 +730,7 @@ public:
|
|||
{
|
||||
OSCMessage outMessage1 ("/test/empty");
|
||||
OSCMessage outMessage2 ("/test/one_arg", 42);
|
||||
OSCMessage outMessage3 ("/test/four_args", 42, 0.5f, "foo", "bar");
|
||||
OSCMessage outMessage3 ("/test/four_args", 42, 0.5f, String ("foo"), String ("bar"));
|
||||
|
||||
OSCBundle outBundle;
|
||||
outBundle.addElement (outMessage1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue