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

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 18:16:29 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220601181629-meq45diu7dh8iied
Made sure that no text rows exeed 80 columns.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    pool_size = get_pool_size (instance);
23
23
    if (pool_size > MAX_TOKEN_ITERATIONS) {
24
24
        throw new Utils.ParamError.OUT_OF_BOUNDS
25
 
          (@"$(this.get_type ().name ()) Pool index: $(get_pool_size (instance))");
 
25
          (@"$(this.get_type ().name ())" +
 
26
           " Pool index: $(get_pool_size (instance))");
26
27
    }
27
28
 
28
29
    bool is_roll_again;