diff options
author | Markus Grüneis <gimpf@gimpf.org> | 2010-02-18 09:15:27 +0000 |
---|---|---|
committer | Markus Grüneis <gimpf@gimpf.org> | 2010-02-18 09:15:27 +0000 |
commit | e191eab68d905bfe14e3590a92fa653f0ae2ebce (patch) | |
tree | a5837b067ecab92c645008b537087b0d163ef1ab /src/seqWindow.cpp | |
parent | whitespace only change: unified formatting with "astyle --style=k/r --indent=... (diff) |
non-functional changes only: use standard writing of stdint.h types; still import from boost (compiler compatibility)
Diffstat (limited to 'src/seqWindow.cpp')
-rw-r--r-- | src/seqWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/seqWindow.cpp b/src/seqWindow.cpp index e860464..992a71c 100644 --- a/src/seqWindow.cpp +++ b/src/seqWindow.cpp @@ -54,7 +54,7 @@ void SeqWindowElement::init(window_size_t w, seq_nr_t m) if(window_) { delete[] window_; } - window_ = new u_int8_t[w]; + window_ = new uint8_t[w]; memset(window_, 0, w); pos_ = 0; max_ = m; |