Changeset 318


Ignore:
Timestamp:
Nov 14, 2006, 2:00:25 PM (18 years ago)
Author:
garonne
Message:

See C.L 318

Location:
CMT/v1r20b1
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • CMT/v1r20b1/ChangeLog

    r282 r318  
     12006-14-11 Vincent Garonne <garonne@lal.in2p3.fr> 318
     2
     3    *  cmt_tag.cxx: Correct the fact that "apply_tag" protected by a private section is exported in all the clients packages.
     4
    152006-18-10 Vincent Garonne <garonne@lal.in2p3.fr> 317
    26
  • CMT/v1r20b1/source/cmt_tag.cxx

    r11 r318  
    190190  cmt_string name;
    191191  Tag* tag;
    192 
    193   if (words.size () < 1) return;
     192 
     193    if (words.size () < 1) return;
    194194  name = words[1];
    195195  if (name == "") return;
     196 
     197  if (use->get_current_scope () == ScopePrivate) return;
    196198
    197199  Symbol::expand (name);
    198 
     200 
     201 
    199202  if (name == "")
    200203    {
     
    226229  name = words[1];
    227230  if (name == "") return;
     231  if (use->get_current_scope () == ScopePrivate) return;
    228232
    229233  tag = add (name, PriorityUserTag, "use", use);
  • CMT/v1r20b1/source/cmt_tag.h

    r11 r318  
    7171  Use* m_set_use;
    7272  int m_priority;
     73  ScopeType scope;
    7374};
    7475
  • CMT/v1r20b1/source/cmt_version.h

    r302 r318  
    99
    1010//#define CMTVERSION "v1r18p20050901"
    11 #define CMTVERSION "v1r19"
     11#define CMTVERSION "v1r20b1"
    1212
    1313#endif
Note: See TracChangeset for help on using the changeset viewer.