From ca71b6b533fbc173eb5e5f365a72eb610183734c Mon Sep 17 00:00:00 2001 From: Paul Cochrane Date: Thu, 11 Jun 2015 15:21:27 +0200 Subject: [PATCH] Add `use nqp` pragma The use of nqp::operations has been deprecated for non-CORE code. If one wishes to use nqp operations within non-CORE code, then the `use nqp` pragma is required. --- lib/Term/ProgressBar.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Term/ProgressBar.pm b/lib/Term/ProgressBar.pm index abb7c26..12f2d0a 100644 --- a/lib/Term/ProgressBar.pm +++ b/lib/Term/ProgressBar.pm @@ -1,4 +1,5 @@ use v6; +use nqp; class Term::ProgressBar; has Int $.count = 100;