Skip to content

Commit 4f331a3

Browse files
committed
Cleaned up includes and indentation
1 parent bb05bab commit 4f331a3

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

include/vsg/core/Value.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
1212
1313
</editor-fold> */
1414

15-
#include <vsg/core/Auxiliary.h>
1615
#include <vsg/core/Data.h>
1716
#include <vsg/core/type_name.h>
1817

src/vsg/core/Data.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
1111
</editor-fold> */
1212

1313
#include <vsg/core/Allocator.h>
14-
#include <vsg/core/Array.h>
14+
#include <vsg/core/Auxiliary.h>
1515
#include <vsg/core/Data.h>
1616
#include <vsg/core/MipmapLayout.h>
1717
#include <vsg/io/Input.h>
18-
#include <vsg/io/Logger.h>
1918
#include <vsg/io/Output.h>
2019

2120
using namespace vsg;
@@ -137,7 +136,8 @@ void Data::setMipmapLayout(MipmapLayout* mipmapLayout)
137136
{
138137
if (mipmapLayout)
139138
setObject("mipmapLayout", ref_ptr<MipmapLayout>(mipmapLayout));
140-
else if (getAuxiliary()) removeObject("mipmapLayout");
139+
else if (getAuxiliary())
140+
removeObject("mipmapLayout");
141141
}
142142

143143
const MipmapLayout* Data::getMipmapLayout() const

0 commit comments

Comments
 (0)