/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/variable.vala

  • Committer: Gustav Hartvigsson
  • Date: 2021-11-10 23:19:02 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20211110231902-za9nfh0mc1b8i21k
Added RollAndKeepFunctionToken.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
      }
32
32
      return 0;
33
33
      
34
 
      // // this should be correct.
35
 
      // return (current_val.compare (other.current_val)) +
36
 
      //        (max_val.compare (other.max_val)) +
37
 
      //        (min_val.compare (other.min_val));
38
 
      // ------------------------------------------
39
 
      // if (this.current_val > other.current_val) {
40
 
      //   return -1;
41
 
      // } else if (this.current_val < other.current_val) {
42
 
      //   return 1;
43
 
      // } else {
44
 
      //   if (this.max_val > other.max_val) {
45
 
      //     return -1;
46
 
      //   } else if (this.max_val < other.max_val) {
47
 
      //     return 1;
48
 
      //   } else {
49
 
      //     if (this.min_val > other.min_val) {
50
 
      //       return -1;
51
 
      //     } else if (this.min_val < other.min_val) {
52
 
      //       return 1;
53
 
      //     } // End min_val comp.
54
 
      //   } // End max_val comp
55
 
      // } // End current_val Comp
56
 
      // return 0; // They are exacly the same.
57
34
    }
58
35
    
59
36
    /**