diff options
author | Jose <jose@zeroc.com> | 2019-05-07 12:59:56 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-05-07 12:59:56 +0200 |
commit | c1692a6ffdf6fe5233bf2217b76f9c3e49fd2661 (patch) | |
tree | 895e605aabbbb80972d7073b906d5c00afc3be7f /cpp/src/slice2swift/SwiftUtil.h | |
parent | Regenerate Xcode projects (diff) | |
download | ice-c1692a6ffdf6fe5233bf2217b76f9c3e49fd2661.tar.bz2 ice-c1692a6ffdf6fe5233bf2217b76f9c3e49fd2661.tar.xz ice-c1692a6ffdf6fe5233bf2217b76f9c3e49fd2661.zip |
Fix identifier escaping
Diffstat (limited to 'cpp/src/slice2swift/SwiftUtil.h')
-rw-r--r-- | cpp/src/slice2swift/SwiftUtil.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/slice2swift/SwiftUtil.h b/cpp/src/slice2swift/SwiftUtil.h index 0c26526ba19..edf29dbd625 100644 --- a/cpp/src/slice2swift/SwiftUtil.h +++ b/cpp/src/slice2swift/SwiftUtil.h @@ -28,7 +28,6 @@ StringList splitScopedName(const std::string&); struct ParamInfo { std::string name; - std::string fixedName; TypePtr type; std::string typeStr; bool optional; @@ -48,9 +47,9 @@ public: protected: + std::string paramLabel(const std::string&, const ParamDeclList&); std::string operationReturnType(const OperationPtr&); bool operationReturnIsTuple(const OperationPtr&); - std::string operationReturnTypeLabel(const OperationPtr&); std::string operationReturnDeclaration(const OperationPtr&); std::string operationInParamsDeclaration(const OperationPtr&); |