mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-02 11:59:58 +00:00
Add default ctor to doc::Remap()
This commit is contained in:
parent
144139f49d
commit
ff453e8e83
@ -1,5 +1,5 @@
|
||||
// Aseprite Document Library
|
||||
// Copyright (c) 2001-2016 David Capello
|
||||
// Copyright (c) 2001-2017 David Capello
|
||||
//
|
||||
// This file is released under the terms of the MIT license.
|
||||
// Read LICENSE.txt for more information.
|
||||
@ -18,7 +18,7 @@ namespace doc {
|
||||
|
||||
class Remap {
|
||||
public:
|
||||
Remap(int entries) : m_map(entries, 0) { }
|
||||
Remap(int entries = 1) : m_map(entries, 0) { }
|
||||
|
||||
int size() const {
|
||||
return (int)m_map.size();
|
||||
|
Loading…
Reference in New Issue
Block a user