aboutsummaryrefslogtreecommitdiff
path: root/Gem/develop/include/Gem/RTE
diff options
context:
space:
mode:
Diffstat (limited to 'Gem/develop/include/Gem/RTE')
-rw-r--r--Gem/develop/include/Gem/RTE/MessageCallbacks.h6
-rw-r--r--Gem/develop/include/Gem/RTE/RTE.h6
2 files changed, 8 insertions, 4 deletions
diff --git a/Gem/develop/include/Gem/RTE/MessageCallbacks.h b/Gem/develop/include/Gem/RTE/MessageCallbacks.h
index 9fa57cd..2f5eb36 100644
--- a/Gem/develop/include/Gem/RTE/MessageCallbacks.h
+++ b/Gem/develop/include/Gem/RTE/MessageCallbacks.h
@@ -82,7 +82,8 @@ struct TypeTemplate<int> : TypeTemplateCore<t_float, int> {
}
};
template<>
-struct TypeTemplate<unsigned int> : TypeTemplateCore<t_float, unsigned int> {
+struct TypeTemplate<unsigned int> :
+ TypeTemplateCore<t_float, unsigned int> {
static t_atomtype atomtype_id(void)
{
return A_FLOAT;
@@ -111,7 +112,8 @@ struct TypeTemplate<t_symbol*> : TypeTemplateCore<t_symbol*> {
}
};
template<>
-struct TypeTemplate<std::string> : TypeTemplateCore<t_symbol*, std::string> {
+struct TypeTemplate<std::string> :
+ TypeTemplateCore<t_symbol*, std::string> {
static t_atomtype atomtype_id(void)
{
return A_DEFSYMBOL;
diff --git a/Gem/develop/include/Gem/RTE/RTE.h b/Gem/develop/include/Gem/RTE/RTE.h
index 7bb0d04..1f28c60 100644
--- a/Gem/develop/include/Gem/RTE/RTE.h
+++ b/Gem/develop/include/Gem/RTE/RTE.h
@@ -35,7 +35,8 @@ public:
/**
* get the Runtime Environemnt's version
*/
- virtual const std::string getVersion(unsigned int&major, unsigned int&minor);
+ virtual const std::string getVersion(unsigned int&major,
+ unsigned int&minor);
/**
* get the Runtime Environemnt's name
@@ -52,7 +53,8 @@ public:
* find a file in the given context(canvas), searching RTEs search paths
* @return expanded filename
*/
- virtual std::string findFile(const std::string&name, const std::string&ext, const void*context) const;
+ virtual std::string findFile(const std::string&name, const std::string&ext,
+ const void*context) const;
/**
* add 'path' to the search-paths (if context==NULL, to the global search path)