/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/function/function_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:
88
88
     * @param position Token position.
89
89
     * @return An instance representing the function, or @c null if not found.
90
90
     */
91
 
    public static FunctionToken? init_token (string token, int position) {
 
91
    public static FunctionToken? init_token (string token, int32 position) {
92
92
      
93
93
      if (_allowed_functions == null) {
94
94
        // Intialise the HashMap if it is not created.
144
144
    }
145
145
    
146
146
    protected FastNumber get_optional_child_raw_result (Context instance,
147
 
                                                  int index,
 
147
                                                  int32 index,
148
148
                                                  int64 default_result)
149
149
                                                  throws GLib.Error {
150
150
     Token? tmp_roll = get_child (index);