From 2099446e2f5a31be5898582de84f942b787fa62c Mon Sep 17 00:00:00 2001 From: antoine Date: Sun, 24 Feb 2013 08:07:39 +0000 Subject: [PATCH] use nstore for machine independant storage --- lib/Algorithm/ContextVector.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Algorithm/ContextVector.pm b/lib/Algorithm/ContextVector.pm index 5ea911f..49fc3c2 100644 --- a/lib/Algorithm/ContextVector.pm +++ b/lib/Algorithm/ContextVector.pm @@ -65,7 +65,7 @@ Save the $self to $filename using Storable. sub save_to_file { my $self = shift; my ($file) = @_; - store($self, $file); + nstore($self, $file); } sub _add_hashrefs {