~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to src/lib/eng/shl/Constant.cpp

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2015-07-11 02:00:35 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150711020035-2nhpztq7s15qyc0v
Tags: 2.5.1-1
* New upstream release. (Closes: #789968)
* Update debian/control.
  - Update Standards-Version to 3.9.6.
* Add support mips64(el) and ppc64el. (Closes: #741508, #748146)
* Add patches/support-gcc-5.x.patch. (Closes: #777767)
  - Fix build with gcc-5.x.
* Add patches/Disable-NET0001.als.patch.
  - Disable test of NET0001.als.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
// - the copyright holder be liable for any  direct, indirect, incidental or -
12
12
// - special damages arising in any way out of the use of this software.     -
13
13
// ---------------------------------------------------------------------------
14
 
// - copyright (c) 1999-2012 amaury darsch                                   -
 
14
// - copyright (c) 1999-2015 amaury darsch                                   -
15
15
// ---------------------------------------------------------------------------
16
16
 
17
17
#include "Engsid.hxx"
32
32
    return new Constant;
33
33
  }
34
34
  // register this lexical serial id
35
 
  static const t_byte SERIAL_ID = Serial::setsid (SERIAL_CNST_ID, mksob);
 
35
  static const t_byte SERIAL_ID __attribute__((unused)) = Serial::setsid (SERIAL_CNST_ID, mksob);
36
36
 
37
37
  // -------------------------------------------------------------------------
38
38
  // - class section                                                       -
75
75
    return "Constant";
76
76
  }
77
77
 
 
78
  
78
79
  // return a clone of this object
79
80
 
80
81
  Object* Constant::clone (void) const {
81
82
    return new Constant (*this);
82
83
  }
83
84
 
 
85
  // clear this constant
 
86
 
 
87
  void Constant::clear (void) {
 
88
    wrlock ();
 
89
    try {
 
90
      if (p_lobj != nilp) p_lobj->clear ();
 
91
      unlock ();
 
92
    } catch (...) {
 
93
      unlock ();
 
94
      throw;
 
95
    }
 
96
  }
 
97
 
84
98
  // return a literal representation of this constant
85
99
 
86
100
  String Constant::toliteral (void) const {