From bcd4e34031fa580da6cec212dc7d343d2ed2442f Mon Sep 17 00:00:00 2001 From: konsalex Date: Sun, 28 Jan 2018 19:58:40 +0200 Subject: [PATCH] const char * --- 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 a82d1a3..605e447 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; -char* POINTS_FILENAME = "../data/s4"; +const char* POINTS_FILENAME = "../data/s4"; const char *LABELS_FILENAME = "../data/L.bin"; parameters params;