Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.24 KB | None | 0 0
  1. g++ src/AudioInterface.cpp -c -Iinclude -Wall -g -DDEBUG -ggdb  -o build/debug/64bit/windows/mingw/AudioInterface.o
  2. In file included from include/Sound.hpp:7:0,
  3.                  from include/AudioInterface.hpp:7,
  4.                  from src/AudioInterface.cpp:1:
  5. include/SoundData.hpp:19:3: error: 'uint16_t' does not name a type
  6.    uint16_t numInstances; // The number of instances (Sounds) of this SoundData
  7.    ^
  8. include/SoundData.hpp:22:28: error: 'uint16_t' has not been declared
  9.    SoundData(std::string n, uint16_t* d): name(n) {}
  10.                             ^
  11. include/SoundData.hpp:27:9: error: 'uint16_t' does not name a type
  12.    const uint16_t getNextUID();  // Gets the next up UID (from the number of instances)
  13.          ^
  14. In file included from include/AudioInterface.hpp:7:0,
  15.                  from src/AudioInterface.cpp:1:
  16. include/Sound.hpp:20:3: error: 'uint16_t' does not name a type
  17.    uint16_t uid;   // The UID of this Sound
  18.    ^
  19. include/Sound.hpp: In constructor 'Module::Sound::Sound(Module::SoundData*)':
  20. include/Sound.hpp:25:25: error: class 'Module::Sound' does not have any field named 'uid'
  21.    Sound(SoundData* sd): uid(sd->getNextUID()), soundData(sd) {}
  22.                          ^
  23. include/Sound.hpp:25:33: error: 'class Module::SoundData' has no member named 'getNextUID'
  24.    Sound(SoundData* sd): uid(sd->getNextUID()), soundData(sd) {}
  25.                                  ^
  26. In file included from src/AudioInterface.cpp:1:0:
  27. include/AudioInterface.hpp: At global scope:
  28. include/AudioInterface.hpp:27:41: error: 'uint16_t' has not been declared
  29.    SoundData* loadSoundData(std::string, uint16_t*); // Loads SoundData
  30.                                          ^
  31. src/AudioInterface.cpp: In member function 'Module::Sound* Module::AudioInterface::playSound(Module::SoundData*)':
  32. src/AudioInterface.cpp:14:1: warning: no return statement in function returning non-void [-Wreturn-type]
  33.  }
  34.  ^
  35. src/AudioInterface.cpp: At global scope:
  36. src/AudioInterface.cpp:15:76: error: 'uint16_t' has not been declared
  37.  Module::SoundData* Module::AudioInterface::loadSoundData(std::string name, uint16_t* data)
  38.                                                                             ^
  39. make: *** [build/debug/64bit/windows/mingw/AudioInterface.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement