diff options
author | Jose <jose@zeroc.com> | 2017-02-13 21:00:00 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-02-13 21:00:00 +0100 |
commit | fecc2fea19d0ebfb8ed061ac5b569e3b09862c15 (patch) | |
tree | 8ce1167229f9cfaf9bad9512928dc04920f9d685 /js/src | |
parent | Fixed (ICE-7276) - Comparing struct with Ice::Unset results in error in Ruby (diff) | |
download | ice-fecc2fea19d0ebfb8ed061ac5b569e3b09862c15.tar.bz2 ice-fecc2fea19d0ebfb8ed061ac5b569e3b09862c15.tar.xz ice-fecc2fea19d0ebfb8ed061ac5b569e3b09862c15.zip |
JS stringVersion/intVersion should include comment
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/Ice/Initialize.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/Ice/Initialize.js b/js/src/Ice/Initialize.js index 4424289848a..a4d627c4510 100644 --- a/js/src/Ice/Initialize.js +++ b/js/src/Ice/Initialize.js @@ -105,12 +105,12 @@ Ice.currentEncoding = function() Ice.stringVersion = function() { - return "3.7a4"; + return "3.7a4"; // "A.B.C", with A=major, B=minor, C=patch }; Ice.intVersion = function() { - return 30754; + return 30754; // AABBCC, with AA=major, BB=minor, CC=patch }; module.exports.Ice = Ice; |