Browse Source

Linux: Fix a compiler warning

v7.0.9
Tom Poole 2 years ago
parent
commit
505285bb22
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      extras/Projucer/JuceLibraryCode/BinaryData.cpp
  2. +1
    -1
      extras/Projucer/JuceLibraryCode/BinaryData.h
  3. +1
    -1
      extras/Projucer/Source/BinaryData/juce_SimpleBinaryBuilder.cpp

+ 2
- 2
extras/Projucer/JuceLibraryCode/BinaryData.cpp View File

@@ -8611,7 +8611,7 @@ static const unsigned char temp_binary_data_67[] =
" return false;\r\n"
"\r\n"
" return *s.rbegin() == c;\r\n"
" };\r\n"
" }\r\n"
"\r\n"
" static std::string appendedPaths (const std::string& first, const std::string& second)\r\n"
" {\r\n"
@@ -9013,7 +9013,7 @@ const char* getNamedResource (const char* resourceNameUTF8, int& numBytes)
case 0xe8b08520: numBytes = 1050; return colourscheme_light_xml;
case 0x7c03d519: numBytes = 3005; return juce_runtime_arch_detection_cpp;
case 0x295b6f43: numBytes = 1212; return juce_LinuxSubprocessHelper_cpp;
case 0xef269d3a: numBytes = 12183; return juce_SimpleBinaryBuilder_cpp;
case 0xef269d3a: numBytes = 12182; return juce_SimpleBinaryBuilder_cpp;
default: break;
}


+ 1
- 1
extras/Projucer/JuceLibraryCode/BinaryData.h View File

@@ -210,7 +210,7 @@ namespace BinaryData
const int juce_LinuxSubprocessHelper_cppSize = 1212;
extern const char* juce_SimpleBinaryBuilder_cpp;
const int juce_SimpleBinaryBuilder_cppSize = 12183;
const int juce_SimpleBinaryBuilder_cppSize = 12182;
// Number of elements in the namedResourceList and originalFileNames arrays.
const int namedResourceListSize = 68;


+ 1
- 1
extras/Projucer/Source/BinaryData/juce_SimpleBinaryBuilder.cpp View File

@@ -53,7 +53,7 @@ struct FileHelpers
return false;
return *s.rbegin() == c;
};
}
static std::string appendedPaths (const std::string& first, const std::string& second)
{


Loading…
Cancel
Save