mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Removed pedantic errors. Mainly extra ';' in namespace definitions
This commit is contained in:
parent
dd76a67783
commit
2b80285ad7
@ -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);
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -67,5 +67,5 @@ namespace ace {
|
|||||||
|
|
||||||
animation::~animation() {
|
animation::~animation() {
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
@ -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;
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
@ -53,5 +53,5 @@ namespace ace {
|
|||||||
|
|
||||||
};
|
};
|
||||||
typedef std::shared_ptr<model> model_p;
|
typedef std::shared_ptr<model> model_p;
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
@ -70,5 +70,5 @@ namespace ace {
|
|||||||
};
|
};
|
||||||
typedef std::shared_ptr<model_info> model_info_p;
|
typedef std::shared_ptr<model_info> model_info_p;
|
||||||
|
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
@ -13,5 +13,5 @@ namespace ace {
|
|||||||
|
|
||||||
model_p load(const std::string &);
|
model_p load(const std::string &);
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
@ -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;
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
@ -31,4 +31,4 @@ namespace ace {
|
|||||||
};
|
};
|
||||||
|
|
||||||
typedef transform_matrix_base<float> transform_matrix;
|
typedef transform_matrix_base<float> transform_matrix;
|
||||||
};
|
}
|
||||||
|
@ -168,4 +168,4 @@ namespace ace {
|
|||||||
T _x;
|
T _x;
|
||||||
T _y;
|
T _y;
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
@ -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);
|
||||||
|
@ -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)
|
||||||
{
|
{
|
||||||
|
@ -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 = "";
|
||||||
|
Loading…
Reference in New Issue
Block a user