Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. typedef vector<vector<vector<double> > > vMatrix;

typedef vector<vector<vector<double> > > vMatrix;

Scheduled Pinned Locked Moved C / C++ / MFC
graphicsdebuggingquestion
2 Posts 2 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    closecall
    wrote on last edited by
    #1

    i am trying to create a 3D matrix vMatrix[x][y][z] getting warning message: warning C4786: 'std::vector >,std::allocator > > >,std::allocator >,std::allocator > > > > >' : identifier was truncated to '255' characters in the debug information any ideas? (i know i can always ignore warnings but i want to know why) :omg: cheers,

    Z 1 Reply Last reply
    0
    • C closecall

      i am trying to create a 3D matrix vMatrix[x][y][z] getting warning message: warning C4786: 'std::vector >,std::allocator > > >,std::allocator >,std::allocator > > > > >' : identifier was truncated to '255' characters in the debug information any ideas? (i know i can always ignore warnings but i want to know why) :omg: cheers,

      Z Offline
      Z Offline
      ZoogieZork
      wrote on last edited by
      #2

      Template instance names in the STL, when fully expanded by the compiler, often result in truly awe-inspiring identifiers that exceed the 255-character limit for identifiers in the debug info. Remember that many STL templates take a number of optional extra template parameters that specify such things as allocators, sorting rules, and hash traits. The compiler fills in these parameters with default values when generating the instance. I've found this warning to be generally harmless. You can selectively disable it with: #pragma warning(disable:4786) - Mike

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups