diff --git a/CHANGELOG.md b/CHANGELOG.md index e54b4c7e6..d7ce616b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ CLI command and its behaviour. There are no guarantees of stability for the - More file types are recognised: - Assembler (`.asm`) (#928) + - CUDA-C++ (`.cu`, `.cuh`) (#938) ### Changed diff --git a/src/reuse/comment.py b/src/reuse/comment.py index 12c437542..8bfcfef43 100644 --- a/src/reuse/comment.py +++ b/src/reuse/comment.py @@ -605,6 +605,8 @@ class XQueryCommentStyle(CommentStyle): ".csl": HtmlCommentStyle, # Bibliography (XML based) ".css": CssCommentStyle, ".csv": UncommentableCommentStyle, + ".cu": CCommentStyle, + ".cuh": CCommentStyle, ".cxx": CCommentStyle, ".d": CCommentStyle, ".dart": CCommentStyle,