From 7412827fd6566ceb8578f78b854fe5770d656ea4 Mon Sep 17 00:00:00 2001 From: anapt Date: Sun, 28 Jan 2018 21:35:34 +0200 Subject: [PATCH] Revert "const char *" This reverts commit bcd4e34031fa580da6cec212dc7d343d2ed2442f. --- mean_shift_cuda/meanshift.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mean_shift_cuda/meanshift.cu b/mean_shift_cuda/meanshift.cu index 605e447..a82d1a3 100644 --- a/mean_shift_cuda/meanshift.cu +++ b/mean_shift_cuda/meanshift.cu @@ -8,7 +8,7 @@ int DEVIATION = 31000; int NUMBER_OF_POINTS = 5000; int DIMENSIONS = 2; -const char* POINTS_FILENAME = "../data/s4"; +char* POINTS_FILENAME = "../data/s4"; const char *LABELS_FILENAME = "../data/L.bin"; parameters params;