micro: delete gmock/gtest includes in copy of DEPTH_TO_SPACE

Delete the gmock and gtest includes in the currently inactive
copy of op DEPTH_TO_SPACE. There is an annoying difference
between internal and external versions of the code that causes
clang-formatting errors in CI checks. When the code is imported
internally, the gmock and gtest includes become:

    #include "/internal/path/to/gmock/gmock.h"

and then clang-format wants them to be in the lower include block
(i.e., next to "flatbuffers/flatbuffers.h").

The solution for now is to delete gmock and gtest includes when
making these operator copies.
This commit is contained in:
Ryan Kuester 2021-01-07 15:21:02 -06:00
parent 2ea65c4f4f
commit c30b352174

View File

@ -12,8 +12,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <stdint.h>
#include <initializer_list>