Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
-----Original Message- From: IBM Mainframe Discussion List On Behalf Of David Crayford Sent: Monday, January 23, 2023 7:59 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: XL C++ compiler error messag

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread David Crayford
On 23/1/23 22:29, Paul Gorlinsky wrote: C++ is an extension to C… staying current with Visual Studio releases will help. Microsoft has been making lots of enhancements trying to catch up to the current C/C++ standards. I wouldn't use the full fat Visual Studio. Far better off using VS Code

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
Says supports IBM Open XL C/C++ supports up to C17, C18 and C++17 language standards. On Mon, Jan 23, 2023 at 9:47 AM Paul Gorlinsky mailto:p...@atsmigrations.com> > wrote: Search ibm zOS xl c https://www.ibm.com/products/xl-cpp-compiler-zos

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Paul Gorlinsky
IBM Open XL C/C++ supports up to C17, C18 and C++17 language standards. It uses the Clang command line interface, which significantly improves cross platform compatibility for C/C++ applications. Vs2022 is still C11 kinda… not fully implemented

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Paul Gorlinsky
Search ibm zOS xl c https://www.ibm.com/products/xl-cpp-compiler-zos -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
Gorlinsky Sent: Monday, January 23, 2023 9:29 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: XL C++ compiler error message map template not included due to compiler version BOOL is 4bytes with windows… TRUE and FALSE are 1 and 0… bool is a single unsigned byte and true and false are the proper

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Paul Gorlinsky
BOOL is 4bytes with windows… TRUE and FALSE are 1 and 0… bool is a single unsigned byte and true and false are the proper states. C++ is an extension to C… staying current with Visual Studio releases will help. Microsoft has been making lots of enhancements trying to catch up to the current

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread Joseph Reichman
-Original Message- From: IBM Mainframe Discussion List On Behalf Of David Crayford Sent: Monday, January 23, 2023 7:20 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: XL C++ compiler error message map template not included due to compiler version Looks like your invoking the C compiler not C

Re: XL C++ compiler error message map template not included due to compiler version

2023-01-23 Thread David Crayford
Looks like your invoking the C compiler not C++. > On 23 Jan 2023, at 11:15, Joseph Reichman wrote: > > Hi > > > > I got this error when trying to include template > > > > > > // map standard header > > > > > > #error

XL C++ compiler error message map template not included due to compiler version

2023-01-22 Thread Joseph Reichman
Hi I got this error when trying to include template // map standard header