summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/CPlusPlusUtil.cpp
Commit message (Collapse)AuthorAge
* Fixed commentsBernard Normier2019-08-16
|
* Fixes for C++ & Swift generated code - Close #458Jose2019-07-31
|
* Merge remote-tracking branch 'origin/3.7' into swiftJose2019-07-09
|\
| * Remove forward declarations limitation - Close #97Jose2019-07-09
| |
* | Merge remote-tracking branch 'origin/3.7' into swiftJose2019-06-22
|\|
| * Incorrect documentation for C++ generated structs Fixes #350Jose2019-06-21
| |
* | Fix version checkJose2019-06-12
|/
* Copyright header simplicationJose2019-01-19
|
* Remove copyright noticeJose2018-12-18
|
* Fix copyright headerJose2018-12-18
|
* Extra C++ warning flags with clang and g++.Bernard Normier2018-10-26
| | | | Fixes 223.
* slice2cpp generates invalid code wrt namespace qualificationJose2018-06-19
| | | | Closes #104
* Update copyright year to 2018Jose2018-02-14
|
* Fix Overqualification in generated codeJose2017-10-30
| | | | See ICE-7856
* Remove excessive empty linesJoe George2017-06-07
|
* Generate alias for "delegate" in C++11 (ICE-7859)Bernard Normier2017-05-03
|
* Remove trailing whitespaceJoe George2017-05-02
|
* Update IceSSL::ConnectionInfo to use native certs and remove ↵Jose2017-03-20
| | | | NativeConnectionInfo
* Merge remote-tracking branch 'origin/3.6'Joe George2017-02-13
|\
| * ICE-7506 - Update copyright to 2017Joe George2017-02-13
| |
* | Removed cpp:unscoped from all Ice enumsBernard Normier2017-02-08
| | | | | | | | CompressBatch is now "scoped" in C++98 and ObjC
* | Make Slice enums scopedBernard Normier2017-02-08
| | | | | | | | Add new cpp:scoped and objc:scoped metadata directives
* | Fix ICE-743 - Eliminate FeatureProfile in slice compilersJose2016-11-21
| |
* | Replaced non-public double underscores in C++Bernard Normier2016-11-12
| |
* | Revert "Replaced double and triple underscores in C++ by ice-prefixed names"Bernard Normier2016-11-05
| | | | | | | | This reverts commit 91fa99c34d1211d426b24bf68001fc27a87b3f00.
* | Revert "Reverted previous double-underscore changes in IceUtil classes"Bernard Normier2016-11-05
| | | | | | | | This reverts commit 2e6243dd2955e6a292bbe8a569d4e1711253746a.
* | Reverted previous double-underscore changes in IceUtil classesBernard Normier2016-11-03
| |
* | Replaced double and triple underscores in C++ by ice-prefixed namesBernard Normier2016-11-02
| |
* | Fixed (ICE-7440) - unreferenced local parameter in generated codeJose2016-11-02
| |
* | New C++11 optional mappingBernard Normier2016-07-18
| |
* | Some ice_tuple fixesJoe George2016-07-13
| | | | | | | | - ice_tuple now returns all data members from class base class
* | Add missing file from previous commitJoe George2016-07-11
| |
* | StreamReader/Writer improvementsJoe George2016-07-11
| | | | | | | | | | | | - No longer generate StreamWriter partial template specialization for C++ classes/structs/exceptions which have no optional members. - Reduce generated code size for all C++11 StreamReader/Writers.
* | ICE-7172 - Replace generated comparsion operatorsJoe George2016-07-08
| | | | | | | | | | | | | | - Add ice_tuple function to structs and classes. Returns a tuple of data members - Replace generated comparsion for structs (and classes) with template comparsion operators which use ice_tuple
* | Better formatting of generated codeBernard Normier2016-07-06
| | | | | | | | | | Fixed ice_id/ice_staticId implementation Generate override with C++11 mapping
* | Improved InputStream and OutputStream in C++11Bernard Normier2016-06-21
| |
* | C++11 AMI custom mapping supportBernard Normier2016-06-16
| |
* | ICE-7179 - Update std::function code styleJoe George2016-06-13
| |
* | Fix for ICE-ICE-6982 optional data membersJoe George2016-06-08
| |
* | ICE-6982 and ICE-6946Joe George2016-06-08
| | | | | | | | | | - Refactord C++ class/exception stream generated code - Changed return type of Obejct::ice_id() to std::string for C++11
* | Another fix for ICE-7132Benoit Foucher2016-05-09
| |
* | Merge remote-tracking branch 'origin/3.6'Joe George2016-03-01
|\|
| * Update copyright headersJoe George2016-03-01
| |
* | Refactored invocation code to better suite new C++11 mappingBenoit Foucher2016-02-03
| |
* | Fix ICE-6947Joe George2015-12-29
| | | | | | | | | | Pass in-parameters for local interfaces with delegate metadata by value in C++11
* | C++11 mapping server side input parameter fixesJose2015-12-09
| |
* | ICE-6897 - Add delegate metadataJoe George2015-12-03
| | | | | | | | | | | | | | The "delegate" metadata tag can be applied to interfaces with one operation. In C++ they are mapped to std::function's, in C# delegates. In Java we still generate a interface with one operation, which is a FunctionalInterface.
* | C++11 mapping: fixes for optionals generated codeJose2015-12-03
| |
* | C++11 mapping initial commitJose2015-12-01
|/
* ICE-6481 pragma comment when building static librariesBernard Normier2015-05-05
| | | | | | | | | | | | | | On windows with VS, pragma comment is now defined when building only when ICE_BUILDING_<component-name> is not defined. ICE_BUILDING_<component-name> is defined automatically when <component-name>_API_EXPORTS is defined. When building static Ice libraries on Windows, please define ICE_BUILDING_<component-name-being-built>. ICE_DECLSPEC_EXPORT and ICE_DECLSPEC_IMPORT are now defined all the time on Windows, and we define the various _API macros to /**/ when ICE_STATIC_LIBS is defined. Replaced various direct use of ICE_DECLSPEC_EXPORT/ICE_DECLSPEC_IMPORT by the correct _API macro.