Post Reply 
How to change bases?
12-02-2019, 06:16 AM (This post was last modified: 12-02-2019 06:18 AM by Tim Wessman.)
Post: #23
RE: How to change bases?
So just looked at the code and found something interesting that was put in at r9649... looks like all of this got lost somewhere and missed documenting/testing. Most likely you will wipe all memory, fry your CPU, and potentially explode, so don't blame me. Also, i suspect that will be removed at some point as they really dont belong in "CONVERT" and should be in a different location.

Code:
    if (wcsicmp2(Params[1]->String()->string(), L"base")==0 && NbParams==3) return BaseConvertion(Params[0], Params[2]);
//    if (wcsicmp2(Params[1]->String()->string(), L"array")==0) return ArrayConvertion(Params[0], Params+2, NbParams-2); // Use ListToMat!
    if (wcsicmp2(Params[1]->String()->string(), L"list")==0) return listConvertion(Params[0], false);
    if (wcsicmp2(Params[1]->String()->string(), L"listlist")==0) return listConvertion(Params[0], true);

TW

Although I work for HP, the views and opinions I post here are my own.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
How to change bases? - kevin3g - 04-07-2019, 02:45 PM
RE: How to change bases? - rprosperi - 04-07-2019, 03:31 PM
RE: How to change bases? - Aries - 04-07-2019, 03:50 PM
RE: How to change bases? - Don Shepherd - 04-08-2019, 12:44 AM
RE: How to change bases? - toml_12953 - 04-10-2019, 12:46 AM
RE: How to change bases? - Albert Chan - 04-27-2019, 06:52 PM
RE: How to change bases? - Joe Horn - 04-08-2019, 01:14 AM
RE: How to change bases? - rprosperi - 04-08-2019, 01:36 AM
RE: How to change bases? - Joe Horn - 04-08-2019, 02:12 AM
RE: How to change bases? - John Keith - 04-08-2019, 01:11 PM
RE: How to change bases? - rprosperi - 04-08-2019, 07:39 PM
RE: How to change bases? - parisse - 04-08-2019, 09:29 AM
RE: How to change bases? - Joe Horn - 11-29-2019, 06:34 PM
RE: How to change bases? - toml_12953 - 11-30-2019, 04:48 AM
RE: How to change bases? - Joe Horn - 11-30-2019, 01:01 PM
RE: How to change bases? - rprosperi - 11-30-2019, 02:41 PM
RE: How to change bases? - toml_12953 - 11-30-2019, 03:16 PM
RE: How to change bases? - Steve Simpkin - 11-30-2019, 06:26 PM
RE: How to change bases? - Joe Horn - 11-30-2019, 07:21 PM
RE: How to change bases? - toml_12953 - 11-30-2019, 08:34 PM
RE: How to change bases? - Didier Lachieze - 12-01-2019, 08:43 AM
RE: How to change bases? - rprosperi - 12-01-2019, 02:42 PM
RE: How to change bases? - Tim Wessman - 12-02-2019 06:16 AM
RE: How to change bases? - YEDERF - 12-03-2019, 02:05 AM



User(s) browsing this thread: 1 Guest(s)