We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Thanks for reporting an issue! Please make sure you click the link above to view the issue guidelines, then fill out the blanks below.)
I get the error "Experimental shift on scalar is now forbidden at" followed by a string of error messages.
My project to be set up
https://ghostbin.co/paste/yvad2
I'm on iOS 12.4 I replaced the following: my $functionRetval = shift $args;
my $functionName = shift $args;
with
my $functionRetval = shift @{args};
my $functionName = shift @{args};
Operating System: Windows 10
Toolchain Version: 4.0.3-1
SDK Version: 10.3
The text was updated successfully, but these errors were encountered:
e1d2b68
No branches or pull requests
(Thanks for reporting an issue! Please make sure you click the link above to view the issue guidelines, then fill out the blanks below.)
What are the steps to reproduce this issue?
What happens?
I get the error "Experimental shift on scalar is now forbidden at" followed by a string of error messages.
What were you expecting to happen?
My project to be set up
Any logs, error output, etc?
https://ghostbin.co/paste/yvad2
Any other comments?
I'm on iOS 12.4
I replaced the following:
my $functionRetval = shift $args;
my $functionName = shift $args;
with
my $functionRetval = shift @{args};
my $functionName = shift @{args};
What versions of software are you using?
Operating System: Windows 10
Toolchain Version: 4.0.3-1
SDK Version: 10.3
The text was updated successfully, but these errors were encountered: