From 2abfcebb0eb7989e3d1e7d03f37ecf5c088210af Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 10 Oct 2020 18:19:55 +1100 Subject: Cleanup: use C comments for descriptive text Follow our code style guide by using C-comments for text descriptions. --- source/blender/imbuf/intern/dds/Stream.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/imbuf/intern/dds/Stream.h') diff --git a/source/blender/imbuf/intern/dds/Stream.h b/source/blender/imbuf/intern/dds/Stream.h index ad6b9165801..acf0345b3a6 100644 --- a/source/blender/imbuf/intern/dds/Stream.h +++ b/source/blender/imbuf/intern/dds/Stream.h @@ -23,10 +23,10 @@ #pragma once struct Stream { - unsigned char *mem; // location in memory - unsigned int size; // size - unsigned int pos; // current position - bool failed; // error occurred when seeking + unsigned char *mem; /* location in memory */ + unsigned int size; /* size */ + unsigned int pos; /* current position */ + bool failed; /* error occurred when seeking */ Stream(unsigned char *m, unsigned int s) : mem(m), size(s), pos(0), failed(false) { } -- cgit v1.2.3