Unix Programming - Compatibility of checks done by 'Forte Developer 7' & 'Sun studio 9' C++ compilers

This is Interesting: Free IT Magazines  
Home > Archive > Unix Programming > February 2005 > Compatibility of checks done by 'Forte Developer 7' & 'Sun studio 9' C++ compilers





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Compatibility of checks done by 'Forte Developer 7' & 'Sun studio 9' C++ compilers
qazmlp

2005-02-21, 6:00 pm

Following is one of the post which got un-answered in
comp.unix.solaris group earlier. I am re-posting it again hoping that
anybody who has moved from 'Sun Forte-7' to 'Sun Studio 9' should
certainly be able to help here. Thanks!

-----------------------------------------------------
I would like to know the compatibility of the checks done by the C++
compilers:
'Forte Developer 7' & 'Sun studio 9' C++ compilers.

When we moved from Sun WorkShop 6 to 'Forte Developer 7' C++ compiler,
it was required to do few modifications in the existing code for e.g.
having the same exception specification as the base class version, in
derived class version of the same function.

class base
{
public:
void test() throw(std::bad_alloc) ;

// Other parts of 'base'
};

class derived: public base
{
public:
/* Following compiled successfully with 'Sun WorkShop 6', but not
with 'Forte Developer 7' */
// void test();

/* It was required to do the following */
void test() throw(std::bad_alloc) ;

// Other parts of 'derived'
};


I fully agree that, we should write code which is 100% C++ standard
compatible to avoid any corrections based on compiler versions. But,
it may not be practically to cross-check this in a LSSD projects.

Hence, I would like to know the above information!
----------------------------------------------------
Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com