/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/value/variable_value_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:
8
8
      this.priority = Prio.VALUE;
9
9
    }
10
10
    
11
 
    public VariableValueToken (string name, int position) {
 
11
    public VariableValueToken (string name, int32 position) {
12
12
      base (position);
13
13
      this.name = name;
14
14
    }