Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
c71bfe95
Commit
c71bfe95
authored
Jan 25, 2005
by
Josh Coalson
Browse files
remove superfluous semicolon after namespace closures
parent
ba056083
Changes
18
Hide whitespace changes
Inline
Side-by-side
include/FLAC++/decoder.h
View file @
c71bfe95
...
...
@@ -346,7 +346,7 @@ namespace FLAC {
/* \} */
}
;
}
;
}
}
#endif
include/FLAC++/encoder.h
View file @
c71bfe95
...
...
@@ -375,7 +375,7 @@ namespace FLAC {
/* \} */
}
;
}
;
}
}
#endif
include/FLAC++/metadata.h
View file @
c71bfe95
...
...
@@ -1036,7 +1036,7 @@ namespace FLAC {
/* \} */
}
;
}
;
}
}
#endif
include/OggFLAC++/decoder.h
View file @
c71bfe95
...
...
@@ -351,7 +351,7 @@ namespace OggFLAC {
/* \} */
}
;
}
;
}
}
#endif
include/OggFLAC++/encoder.h
View file @
c71bfe95
...
...
@@ -380,7 +380,7 @@ namespace OggFLAC {
/* \} */
}
;
}
;
}
}
#endif
src/libFLAC++/file_decoder.cpp
View file @
c71bfe95
...
...
@@ -232,5 +232,5 @@ namespace FLAC {
instance
->
error_callback
(
status
);
}
}
;
}
;
}
}
src/libFLAC++/file_encoder.cpp
View file @
c71bfe95
...
...
@@ -368,5 +368,5 @@ namespace FLAC {
instance
->
progress_callback
(
bytes_written
,
samples_written
,
frames_written
,
total_frames_estimate
);
}
}
;
}
;
}
}
src/libFLAC++/metadata.cpp
View file @
c71bfe95
...
...
@@ -75,7 +75,7 @@ namespace FLAC {
return
ret
;
}
}
;
}
FLACPP_API
Prototype
*
clone
(
const
Prototype
*
object
)
{
...
...
@@ -1360,5 +1360,5 @@ namespace FLAC {
return
ret
;
}
}
;
}
;
}
}
src/libFLAC++/seekable_stream_decoder.cpp
View file @
c71bfe95
...
...
@@ -282,5 +282,5 @@ namespace FLAC {
instance
->
error_callback
(
status
);
}
}
;
}
;
}
}
src/libFLAC++/seekable_stream_encoder.cpp
View file @
c71bfe95
...
...
@@ -371,5 +371,5 @@ namespace FLAC {
return
instance
->
write_callback
(
buffer
,
bytes
,
samples
,
current_frame
);
}
}
;
}
;
}
}
src/libFLAC++/stream_decoder.cpp
View file @
c71bfe95
...
...
@@ -218,5 +218,5 @@ namespace FLAC {
instance
->
error_callback
(
status
);
}
}
;
}
;
}
}
src/libFLAC++/stream_encoder.cpp
View file @
c71bfe95
...
...
@@ -356,5 +356,5 @@ namespace FLAC {
instance
->
metadata_callback
(
metadata
);
}
}
;
}
;
}
}
src/libOggFLAC++/file_decoder.cpp
View file @
c71bfe95
...
...
@@ -238,5 +238,5 @@ namespace OggFLAC {
instance
->
error_callback
(
status
);
}
}
;
}
;
}
}
src/libOggFLAC++/file_encoder.cpp
View file @
c71bfe95
...
...
@@ -349,5 +349,5 @@ namespace OggFLAC {
instance
->
progress_callback
(
bytes_written
,
samples_written
,
frames_written
,
total_frames_estimate
);
}
}
;
}
;
}
}
src/libOggFLAC++/seekable_stream_decoder.cpp
View file @
c71bfe95
...
...
@@ -288,5 +288,5 @@ namespace OggFLAC {
instance
->
error_callback
(
status
);
}
}
;
}
;
}
}
src/libOggFLAC++/seekable_stream_encoder.cpp
View file @
c71bfe95
...
...
@@ -362,5 +362,5 @@ namespace OggFLAC {
return
instance
->
write_callback
(
buffer
,
bytes
,
samples
,
current_frame
);
}
}
;
}
;
}
}
src/libOggFLAC++/stream_decoder.cpp
View file @
c71bfe95
...
...
@@ -224,5 +224,5 @@ namespace OggFLAC {
instance
->
error_callback
(
status
);
}
}
;
}
;
}
}
src/libOggFLAC++/stream_encoder.cpp
View file @
c71bfe95
...
...
@@ -342,5 +342,5 @@ namespace OggFLAC {
instance
->
metadata_callback
(
metadata
);
}
}
;
}
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment