Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-11-08 10:46:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-08 10:46:10 +0400
commit617a73c573c209155a2f5734030d1cc41e0d6a3d (patch)
tree8796d68b0c1926563abd5e8e1917339e02511ede /source/blender/imbuf/intern/dds/Stream.h
parentb0e2218093a1daac03361b9454006bcdba67b725 (diff)
code cleanup: unused defines & some formatting.
Diffstat (limited to 'source/blender/imbuf/intern/dds/Stream.h')
-rw-r--r--source/blender/imbuf/intern/dds/Stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/dds/Stream.h b/source/blender/imbuf/intern/dds/Stream.h
index 7fed4ca89e7..a1ac49b58da 100644
--- a/source/blender/imbuf/intern/dds/Stream.h
+++ b/source/blender/imbuf/intern/dds/Stream.h
@@ -35,7 +35,7 @@ struct Stream
unsigned char *mem; // location in memory
unsigned int size; // size
unsigned int pos; // current position
- Stream(unsigned char *m, unsigned int s) : mem(m), size(s), pos(0) {};
+ Stream(unsigned char *m, unsigned int s) : mem(m), size(s), pos(0) {}
unsigned int seek(unsigned int p);
};