TR1 Obsolete?

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • TR1 Obsolete?

      Hey guys,

      I am pretty sure TR1 is obsolete now and we can go ahead and use the accepted classes straight from std now, I know they are there, but are they ready for use?
      PC - Custom Built
      CPU: 3rd Gen. Intel i7 3770 3.4Ghz
      GPU: ATI Radeon HD 7959 3GB
      RAM: 16GB

      Laptop - Alienware M17x
      CPU: 3rd Gen. Intel i7 - Ivy Bridge
      GPU: NVIDIA GeForce GTX 660M - 2GB GDDR5
      RAM: 8GB Dual Channel DDR3 @ 1600mhz
    • RE: TR1 Obsolete?

      Depends on what version you're using. Not all of the C++ 11 features have been implemented in Visual Studio 2010. They may or may not be in VS 2012 (I haven't checked). Most companies I know of are still using Visual Studio 2010 (and a couple I know use 2008) so I wouldn't say it's completely obsolete.

      One thing you could do is use a preprocessor conditional statement to conditionally compile the tr1 or std namespace based on compiler version.

      -Rez