Comments only.

This commit is contained in:
John Kessenich 2016-05-06 13:06:11 -06:00
parent 3bdf24267c
commit d3d3ce7160
10 changed files with 6 additions and 33 deletions

View file

@ -1002,6 +1002,11 @@ enum TVisit
// If you only want post-visits, explicitly turn off preVisit (and inVisit)
// and turn on postVisit.
//
// In general, for the visit*() methods, return true from interior nodes
// to have the traversal continue on to children.
//
// If you process children yourself, or don't want them processed, return false.
//
class TIntermTraverser {
public:
POOL_ALLOCATOR_NEW_DELETE(glslang::GetThreadPoolAllocator())