mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Issue #1769 - Part 2 Follow-up: Do not use namespace parent::child {} for defining nested namespaces.
It doesn't build for MSVC on Windows. Also other decoders are using the old way for defining nested namespaces, so better be consistent here.
This commit is contained in:
parent
00a5d64018
commit
134c5e94e8
3 changed files with 12 additions and 6 deletions
|
|
@ -17,7 +17,8 @@
|
|||
|
||||
using namespace mozilla::gfx;
|
||||
|
||||
namespace mozilla::image {
|
||||
namespace mozilla {
|
||||
namespace image {
|
||||
|
||||
#define JXL_TRY(expr) \
|
||||
do { \
|
||||
|
|
@ -162,4 +163,5 @@ nsJXLDecoder::FinishedJXLData()
|
|||
return Transition::TerminateFailure();
|
||||
}
|
||||
|
||||
} // namespace mozilla::image
|
||||
} // namespace image
|
||||
} // namespace mozilla
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue