Skip to content

Commit

Permalink
Removing unused includes
Browse files Browse the repository at this point in the history
  • Loading branch information
ziriax committed May 30, 2018
1 parent e75d87d commit 5c34a2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions maya/scripts/maya2glTF_UI.mel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
proc string _quoted(string $text)
proc string _quoted(string $text)
{
string $quote = "\"";
return $quote+$text+$quote;
Expand Down Expand Up @@ -251,7 +251,7 @@ global proc maya2glTF_UI()
global string $gMainProgressBar;

// This is auto-updated by msbuild
string $maya2glTF_version = "v0.9.5-beta 77dcd04";
string $maya2glTF_version = "v0.9.5-beta e75d87d";

if (`window -exists maya2glTF_exporter_window`)
deleteUI maya2glTF_exporter_window;
Expand Down
4 changes: 0 additions & 4 deletions src/externals.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
#include <bitset>
#include <numeric>
#include <cmath>
#include <valarray>
#include <fstream>

#ifdef _MSC_VER
# pragma warning(disable:4267)
Expand Down Expand Up @@ -46,8 +44,6 @@
#include <coveo/linq.h>
#include <coveo/enumerable.h>

#include <experimental/vector>

#include <maya/MPxCommand.h>
#include <maya/MFnPlugin.h>
#include <maya/MIOStream.h>
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#include "externals.h"

const char* version = "v0.9.5-beta 77dcd04";
const char* version = "v0.9.5-beta e75d87d";

0 comments on commit 5c34a2c

Please sign in to comment.