>From 5f5dbf0a0d0c9cf364c02842f245d4651dac76b8 Mon Sep 17 00:00:00 2001 From: Thierry Banel Date: Sun, 20 Mar 2016 15:24:14 +0100 Subject: [PATCH] use size_t in babel D * lisp/ob-C.el (org-babel-C-header-to-C): change ulong to size_t for indexing a table as mandated by the latest version of the D language (thanks to Chris Andrews) --- lisp/ob-C.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-C.el b/lisp/ob-C.el index dd34b0b..8275313 100644 --- a/lisp/ob-C.el +++ b/lisp/ob-C.el @@ -431,7 +431,7 @@ specifying a variable with the name of the table." table table (length headers) table)) (d (format - "string %s_h (ulong row, string col) { return %s[row][get_column_num(%s_header,col)]; }" + "string %s_h (size_t row, string col) { return %s[row][get_column_num(%s_header,col)]; }" table table table)))))) (provide 'ob-C) -- 2.1.4