/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/libvqdr/operator/add_operator_token.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 12:09:53 UTC
  • mto: This revision was merged to the branch mainline in revision 55.
  • Revision ID: gustav.hartvigsson@gmail.com-20220601120953-3t2j3v68izknnmyw
int -> int32

Finished the last of the convertion to fixed sized integer values.
(where applicable).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
    
5
5
    public override bool is_unary {get; set; default = false;}
6
6
    
7
 
    public override int priority {protected get {
 
7
    public override int32 priority {protected get {
8
8
      if (is_unary) {
9
9
        return Prio.UNARY;
10
10
      } else {
17
17
      
18
18
    }
19
19
    
20
 
    public AddOperatorToken (int position) {
 
20
    public AddOperatorToken (int32 position) {
21
21
      base (position);
22
22
    }
23
23