Removed pedantic errors. Mainly extra ';' in namespace definitions

This commit is contained in:
TheMagnetar 2015-09-08 21:53:29 +02:00
parent dd76a67783
commit 2b80285ad7
13 changed files with 19 additions and 19 deletions

View File

@ -21,7 +21,7 @@
extern "C" { extern "C" {
EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function); EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function);
}; }
std::vector<std::string> splitString(const std::string & input) { std::vector<std::string> splitString(const std::string & input) {
std::istringstream ss(input); std::istringstream ss(input);

View File

@ -15,7 +15,7 @@
extern "C" { extern "C" {
EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function); EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function);
}; }
std::string gClipboardData; std::string gClipboardData;

View File

@ -67,5 +67,5 @@ namespace ace {
animation::~animation() { animation::~animation() {
} }
}; }
}; }

View File

@ -65,5 +65,5 @@ namespace ace {
//ace::vector3<float> axis_dir; //ace::vector3<float> axis_dir;
}; };
typedef std::shared_ptr<animation> animation_p; typedef std::shared_ptr<animation> animation_p;
}; }
}; }

View File

@ -53,5 +53,5 @@ namespace ace {
}; };
typedef std::shared_ptr<model> model_p; typedef std::shared_ptr<model> model_p;
}; }
}; }

View File

@ -70,5 +70,5 @@ namespace ace {
}; };
typedef std::shared_ptr<model_info> model_info_p; typedef std::shared_ptr<model_info> model_info_p;
}; }
}; }

View File

@ -13,5 +13,5 @@ namespace ace {
model_p load(const std::string &); model_p load(const std::string &);
}; };
}; }
}; }

View File

@ -32,5 +32,5 @@ namespace ace {
std::vector<bone_p> all_bones; std::vector<bone_p> all_bones;
}; };
typedef std::shared_ptr<skeleton> skeleton_p; typedef std::shared_ptr<skeleton> skeleton_p;
}; }
}; }

View File

@ -31,4 +31,4 @@ namespace ace {
}; };
typedef transform_matrix_base<float> transform_matrix; typedef transform_matrix_base<float> transform_matrix;
}; }

View File

@ -168,4 +168,4 @@ namespace ace {
T _x; T _x;
T _y; T _y;
}; };
}; }

View File

@ -27,7 +27,7 @@
extern "C" { extern "C" {
EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function); EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function);
}; }
std::vector<std::string> splitString(std::string input) { std::vector<std::string> splitString(std::string input) {
std::istringstream ss(input); std::istringstream ss(input);

View File

@ -14,7 +14,7 @@
extern "C" { extern "C" {
EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function); EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function);
}; }
std::vector<std::string> parseExtensionInput(const std::string& input) std::vector<std::string> parseExtensionInput(const std::string& input)
{ {

View File

@ -18,7 +18,7 @@
extern "C" { extern "C" {
__declspec (dllexport) void __stdcall RVExtension(char *output, int outputSize, const char *function); __declspec (dllexport) void __stdcall RVExtension(char *output, int outputSize, const char *function);
}; }
std::string getImagePathFromStructuredText(const std::string & input) { std::string getImagePathFromStructuredText(const std::string & input) {
std::string returnValue = ""; std::string returnValue = "";